mkvtoolnix/tests/test-276h264_without_nalus_in_avi.rb
Moritz Bunkus 4608261eb5 Fix decision whether or not BITMAPINFOHEADER contains AVCC with or without NALUs
mpeg4::p10::avcc_to_nalus() always returns NALUs. Therefore the
decision whether or not to extract the NALU size length parameter from
the AVCC must not be based on this function's return value, but on the
structure of the data in the private data area of the BITMAPINFOHEADER
structure.
2010-07-06 22:42:34 +02:00

14 lines
225 B
Ruby

#!/usr/bin/ruby -w
class T_276h264_without_nalus_in_avi < Test
def description
return "mkvmerge / h.264 without NALUs in AVI"
end
def run
merge "data/avi/h264-without-nalus.avi"
return hash_tmp
end
end