summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/electronicarts.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c
index 6585bbea2d..218e847f13 100644
--- a/libavformat/electronicarts.c
+++ b/libavformat/electronicarts.c
@@ -416,6 +416,9 @@ static int ea_read_header(AVFormatContext *s,
ea->video_stream_index = st->index;
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->codec_id = ea->video_codec;
+ // parsing is necessary to make FFmpeg generate correct timestamps
+ if (st->codec->codec_id == CODEC_ID_MPEG2VIDEO)
+ st->need_parsing = AVSTREAM_PARSE_HEADERS;
st->codec->codec_tag = 0; /* no fourcc */
st->codec->time_base = ea->time_base;
st->codec->width = ea->width;