[FFmpeg-cvslog] avformat/lxfdec: use a parser to parse video frame headers

Michael Niedermayer git at videolan.org
Sun Sep 1 00:40:27 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Sep  1 00:21:37 2013 +0200| [8349be852be7f68fe0590584fd46c4d5f1c16b3d] | committer: Michael Niedermayer

avformat/lxfdec: use a parser to parse video frame headers

lxf needs a parser (or would need to set a few fields explicitly).
Fixes Ticket2917

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavformat/lxfdec.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/lxfdec.c b/libavformat/lxfdec.c
index 5c61d4f..c854216 100644
--- a/libavformat/lxfdec.c
+++ b/libavformat/lxfdec.c
@@ -257,6 +257,7 @@ static int lxf_read_header(AVFormatContext *s)
     st->codec->bit_rate   = 1000000 * ((video_params >> 14) & 0xFF);
     st->codec->codec_tag  = video_params & 0xF;
     st->codec->codec_id   = ff_codec_get_id(lxf_tags, st->codec->codec_tag);
+    st->need_parsing      = AVSTREAM_PARSE_HEADERS;
 
     av_log(s, AV_LOG_DEBUG, "record: %x = %i-%02i-%02i\n",
            record_date, 1900 + (record_date & 0x7F), (record_date >> 7) & 0xF,



More information about the ffmpeg-cvslog mailing list