[FFmpeg-cvslog] alacdec: move appending of extra_bits to a separate function.

Justin Ruggles git at videolan.org
Thu Oct 27 01:46:42 CEST 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Sun Oct  9 13:27:16 2011 -0400| [c39bddd392f4fe79e038f5753ac10abb78dedeb8] | committer: Justin Ruggles

alacdec: move appending of extra_bits to a separate function.

This should also fix decoding of mono 24-bit.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c39bddd392f4fe79e038f5753ac10abb78dedeb8
---

 libavcodec/alac.c |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index 96b25e0..b7071d2 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -319,6 +319,17 @@ static void decorrelate_stereo(int32_t *buffer[MAX_CHANNELS],
     }
 }
 
+static void append_extra_bits(int32_t *buffer[MAX_CHANNELS],
+                              int32_t *extra_bits_buffer[MAX_CHANNELS],
+                              int extra_bits, int numchannels, int numsamples)
+{
+    int i, ch;
+
+    for (ch = 0; ch < numchannels; ch++)
+        for (i = 0; i < numsamples; i++)
+            buffer[ch][i] = (buffer[ch][i] << extra_bits) | extra_bits_buffer[ch][i];
+}
+
 static void reconstruct_stereo_16(int32_t *buffer[MAX_CHANNELS],
                                   int16_t *buffer_out,
                                   int numchannels, int numsamples)
@@ -338,8 +349,6 @@ static void reconstruct_stereo_16(int32_t *buffer[MAX_CHANNELS],
 
 static void decorrelate_stereo_24(int32_t *buffer[MAX_CHANNELS],
                                   int32_t *buffer_out,
-                                  int32_t *extra_bits_buffer[MAX_CHANNELS],
-                                  int extra_bits,
                                   int numchannels, int numsamples)
 {
     int i;
@@ -350,11 +359,6 @@ static void decorrelate_stereo_24(int32_t *buffer[MAX_CHANNELS],
             left  = buffer[0][i];
             right = buffer[1][i];
 
-            if (extra_bits) {
-                left   = (left   << extra_bits) | extra_bits_buffer[0][i];
-                right  = (right  << extra_bits) | extra_bits_buffer[1][i];
-            }
-
             buffer_out[i * numchannels]     = left  << 8;
             buffer_out[i * numchannels + 1] = right << 8;
         }
@@ -522,6 +526,11 @@ static int alac_decode_frame(AVCodecContext *avctx,
                            interlacing_leftweight);
     }
 
+    if (alac->extra_bits) {
+        append_extra_bits(alac->outputsamples_buffer, alac->extra_bits_buffer,
+                          alac->extra_bits, alac->numchannels, outputsamples);
+    }
+
     switch(alac->setinfo_sample_size) {
     case 16:
         if (channels == 2) {
@@ -540,8 +549,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
         if (channels == 2) {
             decorrelate_stereo_24(alac->outputsamples_buffer,
                                   outbuffer,
-                                  alac->extra_bits_buffer,
-                                  alac->extra_bits,
                                   alac->numchannels,
                                   outputsamples);
         } else {



More information about the ffmpeg-cvslog mailing list