From 69ee915e1c628fdf8b270de8c19ff357333e354a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 7 Jan 2015 11:52:08 +0100 Subject: avcodec/parser: add fuzzy mode to ff_fetch_timestamp() This will be needed for the following timestamp fix Signed-off-by: Michael Niedermayer --- libavcodec/mpeg12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mpeg12.c') 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); } } } -- cgit v1.2.3