mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
34455fa79f
If --default-duration is used then the timecode factory applies queueing. If the packetizer is not flushed then the timecode factory is not flushed either. If the video frame does not end in a key frame then the timecode factory will have frames left, and the packet queue won't be empty resulting in lost frames.
14 lines
257 B
Ruby
14 lines
257 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_279packet_queue_not_empty_ivf < Test
|
|
def description
|
|
"mkvmerge / 'packet queue not empty' with IVF files"
|
|
end
|
|
|
|
def run
|
|
merge "--default-duration 0:25fps data/webm/packet-queue-not-empty.ivf"
|
|
hash_tmp
|
|
end
|
|
end
|
|
|