]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/amr.c
Fix #endif comments.
[ffmpeg] / libavcodec / amr.c
index fccb69d00919721e7b71be6219de6128426ca18b..d84bc677ed5ded24bb9f711a7c8fc3665a8271ee 100644 (file)
@@ -2,19 +2,21 @@
  * AMR Audio decoder stub
  * Copyright (c) 2003 the ffmpeg project
  *
- * This library is free software; you can redistribute it and/or
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This library is distributed in the hope that it will be useful,
+ * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
  /*
     This code implements amr-nb and amr-wb audio encoder/decoder through external reference
     atleast on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip at MR102).
     Both float and fixed point is supported for amr-nb, but only float for
     amr-wb.
-    
+
     --AMR-NB--
     The fixed-point (TS26.073) can be downloaded from:
     http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip
     Extract the soure into ffmpeg/libavcodec/amr
     To use the fixed version run "./configure" with "--enable-amr_nb-fixed"
-    
+
     The float version (default) can be downloaded from:
     http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip
     Extract the soure into ffmpeg/libavcodec/amr_float
     The specification for amr-nb can be found in TS 26.071
     (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other
     info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm
-    
+
     --AMR-WB--
     The reference code can be downloaded from:
     http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip
     It should be extracted to "libavcodec/amrwb_float". Enable it with
     "--enable-amr_wb".
-    
+
     The specification for amr-wb can be downloaded from:
     http://www.3gpp.org/ftp/Specs/archive/26_series/26.171/26171-500.zip
-    
+
     If someone want to use the fixed point version it can be downloaded
     from: http://www.3gpp.org/ftp/Specs/archive/26_series/26.173/26173-571.zip
+
  */
 
 #include "avcodec.h"
 
-#ifdef AMR_NB_FIXED
+#ifdef CONFIG_AMR_NB_FIXED
 
 #define MMS_IO
 
@@ -77,7 +79,7 @@ typedef struct AMR_bitrates
     int startrate;
     int stoprate;
     enum Mode mode;
-    
+
 } AMR_bitrates;
 
 /* Match desired bitrate with closest one*/
@@ -93,7 +95,7 @@ static enum Mode getBitrateMode(int bitrate)
                            {7950,9999,MR795},//9
                            {10000,11999,MR102},//10
                            {12000,64000,MR122},//12
-                           
+
                          };
     int i;
     for(i=0;i<8;i++)
@@ -107,7 +109,7 @@ static enum Mode getBitrateMode(int bitrate)
     return(MR122);
 }
 
-#ifdef AMR_NB_FIXED
+#ifdef CONFIG_AMR_NB_FIXED
 /* fixed point version*/
 /* frame size in serial bitstream file (frame type + serial stream + flags) */
 #define SERIAL_FRAMESIZE (1+MAX_SERIAL_SIZE+5)
@@ -124,7 +126,7 @@ typedef struct AMRContext {
     Speech_Encode_FrameState *enstate;
     sid_syncState *sidstate;
     enum TXFrameType tx_frametype;
-    
+
 
 } AMRContext;
 
@@ -137,7 +139,7 @@ static int amr_nb_decode_init(AVCodecContext * avctx)
     s->mode= (enum Mode)0;
     s->reset_flag=0;
     s->reset_flag_old=1;
-    
+
     if(Speech_Decode_Frame_init(&s->speech_decoder_state, "Decoder"))
     {
         av_log(avctx, AV_LOG_ERROR, "Speech_Decode_Frame_init error\n");
@@ -155,7 +157,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
     s->mode= (enum Mode)0;
     s->reset_flag=0;
     s->reset_flag_old=1;
-    
+
     if(avctx->sample_rate!=8000)
     {
         if(avctx->debug)
@@ -217,7 +219,7 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
     int offset=0;
 
     UWord8 toc, q, ft;
-    
+
     Word16 serial[SERIAL_FRAMESIZE];   /* coded bits */
     Word16 *synth;
     UWord8 *packed_bits;
@@ -250,14 +252,14 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
         //We have a new frame
         s->frameCount++;
 
-        if (s->rx_type == RX_NO_DATA) 
+        if (s->rx_type == RX_NO_DATA)
         {
             s->mode = s->speech_decoder_state->prev_mode;
         }
         else {
             s->speech_decoder_state->prev_mode = s->mode;
         }
-        
+
         /* if homed: check if this frame is another homing frame */
         if (s->reset_flag_old == 1)
         {
@@ -273,7 +275,7 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
             }
         }
         else
-        {     
+        {
             /* decode frame */
             Speech_Decode_Frame(s->speech_decoder_state, s->mode, &serial[1], s->rx_type, synth);
         }
@@ -281,7 +283,7 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
         //Each AMR-frame results in 160 16-bit samples
         *data_size+=160*2;
         synth+=160;
-        
+
         /* if not homed: check whether current frame is a homing frame */
         if (s->reset_flag_old == 0)
         {
@@ -294,29 +296,29 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
             Speech_Decode_Frame_reset(s->speech_decoder_state);
         }
         s->reset_flag_old = s->reset_flag;
-        
+
     }
     return offset;
 }
 
 
 static int amr_nb_encode_frame(AVCodecContext *avctx,
-                           unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
+                            unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
 {
     short serial_data[250] = {0};
 
     AMRContext *s = avctx->priv_data;
     int written;
-   
+
     s->reset_flag = encoder_homing_frame_test(data);
-    
-    Speech_Encode_Frame(s->enstate, s->enc_bitrate, data, &serial_data[1], &s->mode); 
-    
+
+    Speech_Encode_Frame(s->enstate, s->enc_bitrate, data, &serial_data[1], &s->mode);
+
     /* add frame type and mode */
     sid_sync (s->sidstate, s->mode, &s->tx_frametype);
-    
+
     written = PackBits(s->mode, s->enc_bitrate, s->tx_frametype, &serial_data[1], frame);
-    
+
     if (s->reset_flag != 0)
     {
         Speech_Encode_Frame_reset(s->enstate);
@@ -326,7 +328,7 @@ static int amr_nb_encode_frame(AVCodecContext *avctx,
 }
 
 
-#elif defined(AMR_NB) /* Float point version*/
+#elif defined(CONFIG_AMR_NB) /* Float point version*/
 
 typedef struct AMRContext {
     int frameCount;
@@ -352,7 +354,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
 {
     AMRContext *s = avctx->priv_data;
     s->frameCount=0;
-    
+
     if(avctx->sample_rate!=8000)
     {
         if(avctx->debug)
@@ -416,7 +418,7 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
     int packet_size;
 
     /* av_log(NULL,AV_LOG_DEBUG,"amr_decode_frame buf=%p buf_size=%d frameCount=%d!!\n",buf,buf_size,s->frameCount); */
-    
+
     if(buf_size==0) {
         /* nothing to do */
         return 0;
@@ -429,26 +431,26 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
         av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n", buf_size, packet_size);
         return -1;
     }
-    
+
     s->frameCount++;
     /* av_log(NULL,AV_LOG_DEBUG,"packet_size=%d amrData= 0x%X %X %X %X\n",packet_size,amrData[0],amrData[1],amrData[2],amrData[3]); */
     /* call decoder */
     Decoder_Interface_Decode(s->decState, amrData, data, 0);
     *data_size=160*2;
-   
+
     return packet_size;
 }
 
 static int amr_nb_encode_frame(AVCodecContext *avctx,
-                           unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
+                            unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
 {
     AMRContext *s = (AMRContext*)avctx->priv_data;
     int written;
 
-    written = Encoder_Interface_Encode(s->enstate, 
-        s->enc_bitrate, 
-        data, 
-        frame, 
+    written = Encoder_Interface_Encode(s->enstate,
+        s->enc_bitrate,
+        data,
+        frame,
         0);
     /* av_log(NULL,AV_LOG_DEBUG,"amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",written, s->enc_bitrate, frame[0] ); */
 
@@ -457,7 +459,7 @@ static int amr_nb_encode_frame(AVCodecContext *avctx,
 
 #endif
 
-#if defined(AMR_NB) || defined(AMR_NB_FIXED)
+#if defined(CONFIG_AMR_NB) || defined(CONFIG_AMR_NB_FIXED)
 
 AVCodec amr_nb_decoder =
 {
@@ -486,7 +488,7 @@ AVCodec amr_nb_encoder =
 #endif
 
 /* -----------AMR wideband ------------*/
-#ifdef AMR_WB
+#ifdef CONFIG_AMR_WB
 
 #ifdef _TYPEDEF_H
 //To avoid duplicate typedefs from typdef in amr-nb
@@ -502,7 +504,7 @@ typedef struct AMRWB_bitrates
     int startrate;
     int stoprate;
     int mode;
-    
+
 } AMRWB_bitrates;
 
 static int getWBBitrateMode(int bitrate)
@@ -518,7 +520,7 @@ static int getWBBitrateMode(int bitrate)
                            {18001,22000,6},//19.85
                            {22001,23000,7},//23.05
                            {23001,24000,8},//23.85
-                           
+
                          };
     int i;
 
@@ -545,7 +547,7 @@ static int amr_wb_encode_init(AVCodecContext * avctx)
 {
     AMRWBContext *s = (AMRWBContext*)avctx->priv_data;
     s->frameCount=0;
-    
+
     if(avctx->sample_rate!=16000)
     {
         if(avctx->debug)
@@ -584,7 +586,7 @@ static int amr_wb_encode_close(AVCodecContext * avctx)
 }
 
 static int amr_wb_encode_frame(AVCodecContext *avctx,
-                           unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
+                            unsigned char *frame/*out*/, int buf_size, void *data/*in*/)
 {
     AMRWBContext *s = (AMRWBContext*) avctx->priv_data;
     int size = E_IF_encode(s->state, s->mode, data, frame, s->allow_dtx);
@@ -623,7 +625,7 @@ static int amr_wb_decode_frame(AVCodecContext * avctx,
         av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n", buf_size, packet_size+1);
         return -1;
     }
-    
+
     s->frameCount++;
     D_IF_decode( s->state, amrData, data, _good_frame);
     *data_size=320*2;
@@ -661,4 +663,4 @@ AVCodec amr_wb_encoder =
     NULL,
 };
 
-#endif //AMR_WB
+#endif //CONFIG_AMR_WB