[FFmpeg-cvslog] adxenc: avoid stereo deinterleaving

Justin Ruggles git at videolan.org
Thu Jan 5 02:18:50 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Mon Dec 19 09:52:32 2011 -0500| [613668210b87e4d7ceabf65c5939f9219570a6f2] | committer: Justin Ruggles

adxenc: avoid stereo deinterleaving

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

 libavcodec/adxenc.c |   22 +++++++---------------
 1 files changed, 7 insertions(+), 15 deletions(-)

diff --git a/libavcodec/adxenc.c b/libavcodec/adxenc.c
index 43f7801..4f434ba 100644
--- a/libavcodec/adxenc.c
+++ b/libavcodec/adxenc.c
@@ -34,11 +34,11 @@
  */
 
 static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
-                       ADXChannelState *prev)
+                       ADXChannelState *prev, int channels)
 {
     PutBitContext pb;
     int scale;
-    int i;
+    int i, j;
     int s0, s1, s2, d;
     int max = 0;
     int min = 0;
@@ -46,10 +46,10 @@ static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
 
     s1 = prev->s1;
     s2 = prev->s2;
-    for (i = 0; i < 32; i++) {
+    for (i = 0, j = 0; j < 32; i += channels, j++) {
         s0 = wav[i];
         d = ((s0 << COEFF_BITS) - c->coeff[0] * s1 - c->coeff[1] * s2) >> COEFF_BITS;
-        data[i] = d;
+        data[j] = d;
         if (max < d)
             max = d;
         if (min > d)
@@ -138,23 +138,15 @@ static int adx_encode_frame(AVCodecContext *avctx, uint8_t *frame,
 
     if (avctx->channels == 1) {
         while (rest >= 32) {
-            adx_encode(c, dst, samples, c->prev);
+            adx_encode(c, dst, samples, c->prev, avctx->channels);
             dst     += 18;
             samples += 32;
             rest    -= 32;
         }
     } else {
         while (rest >= 32*2) {
-            int16_t tmpbuf[32*2];
-            int i;
-
-            for (i = 0; i < 32; i++) {
-                tmpbuf[i   ] = samples[i*2  ];
-                tmpbuf[i+32] = samples[i*2+1];
-            }
-
-            adx_encode(c, dst,      tmpbuf,      c->prev    );
-            adx_encode(c, dst + 18, tmpbuf + 32, c->prev + 1);
+            adx_encode(c, dst,      samples,     c->prev,     avctx->channels);
+            adx_encode(c, dst + 18, samples + 1, c->prev + 1, avctx->channels);
             dst     += 18*2;
             samples += 32*2;
             rest    -= 32*2;



More information about the ffmpeg-cvslog mailing list