[FFmpeg-cvslog] r18966 - trunk/libavformat/pva.c

bcoudurier subversion
Wed May 27 08:58:22 CEST 2009


Author: bcoudurier
Date: Wed May 27 08:58:22 2009
New Revision: 18966

Log:
technically mp2 in pva needs AVSTREAM_PARSE_FULL

Modified:
   trunk/libavformat/pva.c

Modified: trunk/libavformat/pva.c
==============================================================================
--- trunk/libavformat/pva.c	Wed May 27 08:43:51 2009	(r18965)
+++ trunk/libavformat/pva.c	Wed May 27 08:58:22 2009	(r18966)
@@ -55,7 +55,7 @@ static int pva_read_header(AVFormatConte
         return AVERROR(ENOMEM);
     st->codec->codec_type = CODEC_TYPE_AUDIO;
     st->codec->codec_id   = CODEC_ID_MP2;
-    st->need_parsing      = AVSTREAM_PARSE_HEADERS;
+    st->need_parsing      = AVSTREAM_PARSE_FULL;
     av_set_pts_info(st, 33, 1, 90000);
     av_add_index_entry(st, 0, 0, 0, 0, AVINDEX_KEYFRAME);
 



More information about the ffmpeg-cvslog mailing list