[FFmpeg-cvslog] Enable header parsing for MPEG2VIDEO to get time-stamps.

Reimar Döffinger git at videolan.org
Sat Apr 16 17:50:35 CEST 2011


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Thu Apr  7 22:35:43 2011 +0200| [f0a68a20a7761447c685a6c0c930a5ffdae11797] | committer: Reimar Döffinger

Enable header parsing for MPEG2VIDEO to get time-stamps.

FFmpeg can generate pts and dts on its own, but only
if we enable parsing, so do that.
This fixes ticket #46.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f0a68a20a7761447c685a6c0c930a5ffdae11797
---

 libavformat/electronicarts.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c
index 6585bbe..218e847 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;



More information about the ffmpeg-cvslog mailing list