avformat/mpjpegdec: add AVFMT_NOTIMESTAMPS

there are no timestamps being set, thus do not attempt to collect any

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-02-21 19:41:56 +01:00
parent 6dc1d5f87c
commit 0028da36cd
1 changed files with 2 additions and 1 deletions

View File

@ -398,7 +398,8 @@ AVInputFormat ff_mpjpeg_demuxer = {
.read_header = mpjpeg_read_header,
.read_packet = mpjpeg_read_packet,
.read_close = mpjpeg_read_close,
.priv_class = &mpjpeg_demuxer_class
.priv_class = &mpjpeg_demuxer_class,
.flags = AVFMT_NOTIMESTAMPS,
};