mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
4608261eb5
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.
14 lines
225 B
Ruby
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
|
|
|