[Ffmpeg-cvslog] r6191 - trunk/libavformat/mov.c

michael subversion
Thu Sep 7 22:19:37 CEST 2006


Author: michael
Date: Thu Sep  7 22:19:37 2006
New Revision: 6191

Modified:
   trunk/libavformat/mov.c

Log:
fix sound of SampleVideo.mov (mp2 in mov)


Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Thu Sep  7 22:19:37 2006
@@ -1065,6 +1065,9 @@
         st->codec->sample_rate= 8000;
         st->codec->channels= 1; /* really needed */
         break;
+    case CODEC_ID_MP2:
+        st->need_parsing = 1;
+        break;
     default:
         break;
     }




More information about the ffmpeg-cvslog mailing list