mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
lavf/rawdec: mark raw demuxers as having no timestamps
Changes the result of the h264_redundant_pps-mov test, where the output timebase is now 1001/24000 instead of 1/24. This is more correct, as the source file actually is 23.98fps.
This commit is contained in:
@@ -57,7 +57,7 @@ const AVInputFormat ff_ ## shortname ## _demuxer = {\
|
||||
.read_header = ff_raw_video_read_header,\
|
||||
.read_packet = ff_raw_read_partial_packet,\
|
||||
.extensions = ext,\
|
||||
.flags = flag,\
|
||||
.flags = flag | AVFMT_NOTIMESTAMPS,\
|
||||
.raw_codec_id = id,\
|
||||
.priv_data_size = sizeof(FFRawVideoDemuxerContext),\
|
||||
.priv_class = &ff_rawvideo_demuxer_class,\
|
||||
|
||||
Reference in New Issue
Block a user