mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
7d7f58ce7e
Fix for bug 681.
17 lines
369 B
Ruby
17 lines
369 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_230h264_nalu_size_len_change < Test
|
|
def description
|
|
"mkvmerge / NALU size length changes / in(MP4)"
|
|
end
|
|
|
|
def run
|
|
merge "--nalu-size-length 0:2 data/mp4/test_2000_inloop.mp4"
|
|
hashes = [ hash_file(tmp) ]
|
|
merge "#{tmp}.1", "--nalu-size-length 0:4 #{tmp}"
|
|
hashes << hash_file("#{tmp}.1")
|
|
hashes.join '-'
|
|
end
|
|
end
|
|
|