[Ffmpeg-cvslog] r6530 - trunk/libavformat/mxf.c
bcoudurier
subversion
Mon Oct 2 16:12:51 CEST 2006
Author: bcoudurier
Date: Mon Oct 2 16:12:50 2006
New Revision: 6530
Modified:
trunk/libavformat/mxf.c
Log:
fix audio for mog_op1a_prompeg_mpeg.mxf
Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c (original)
+++ trunk/libavformat/mxf.c Mon Oct 2 16:12:50 2006
@@ -866,6 +866,8 @@
st->codec->codec_id = CODEC_ID_PCM_S24BE;
else if (descriptor->bits_per_sample == 32)
st->codec->codec_id = CODEC_ID_PCM_S32BE;
+ } else if (st->codec->codec_id == CODEC_ID_MP2) {
+ st->need_parsing = 1;
}
}
if (container_ul && container_ul->wrapping == Clip) {
More information about the ffmpeg-cvslog
mailing list