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

bcoudurier subversion
Thu Aug 24 11:53:53 CEST 2006


Author: bcoudurier
Date: Thu Aug 24 11:53:53 2006
New Revision: 6071

Modified:
   trunk/libavformat/mov.c

Log:
move amr parameters adjusting like other codecs

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Thu Aug 24 11:53:53 2006
@@ -978,14 +978,6 @@
                 if (st->codec->bits_per_sample == 8)
                     st->codec->codec_id = CODEC_ID_PCM_S8;
                 break;
-            case CODEC_ID_AMR_WB:
-                st->codec->sample_rate = 16000; /* should really we ? */
-                st->codec->channels=1; /* really needed */
-                break;
-            case CODEC_ID_AMR_NB:
-                st->codec->sample_rate = 8000; /* should really we ? */
-                st->codec->channels=1; /* really needed */
-                break;
             default:
                 break;
             }
@@ -1064,6 +1056,15 @@
         st->codec->codec_id = CODEC_ID_PCM_S16LE;
         break;
 #endif
+    /* no ifdef since parameters are always those */
+    case CODEC_ID_AMR_WB:
+        st->codec->sample_rate= 16000;
+        st->codec->channels= 1; /* really needed */
+        break;
+    case CODEC_ID_AMR_NB:
+        st->codec->sample_rate= 8000;
+        st->codec->channels= 1; /* really needed */
+        break;
     default:
         break;
     }




More information about the ffmpeg-cvslog mailing list