diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-07 11:52:08 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-07 11:52:08 +0100 |
commit | 69ee915e1c628fdf8b270de8c19ff357333e354a (patch) | |
tree | 25e8f7c1ded2cb0d23fb0e287dac6193ff76b32e /libavcodec/mpeg12.c | |
parent | ddae03f69bc1c6ec97c028c91837710944427b83 (diff) | |
download | ffmpeg-69ee915e1c628fdf8b270de8c19ff357333e354a.tar.gz |
avcodec/parser: add fuzzy mode to ff_fetch_timestamp()
This will be needed for the following timestamp fix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index fc43a53701..153e4aa300 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -234,7 +234,7 @@ int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, } } if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) { - ff_fetch_timestamp(s, i - 3, 1); + ff_fetch_timestamp(s, i - 3, 1, 0); } } } |