changeset 5628:cf88751d8ab7 libavcodec

Remove reimplementation of get_unary. Based on a patch by Alex Beregszaszi.
author vitor
date Sat, 01 Sep 2007 21:03:17 +0000
parents a920d9b58f19
children 7e5ebda833e9
files alac.c unary.h
diffstat 2 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/alac.c	Sat Sep 01 14:00:47 2007 +0000
+++ b/alac.c	Sat Sep 01 21:03:17 2007 +0000
@@ -55,6 +55,7 @@
 #include "avcodec.h"
 #include "bitstream.h"
 #include "bytestream.h"
+#include "unary.h"
 
 #define ALAC_EXTRADATA_SIZE 36
 #define MAX_CHANNELS 2
@@ -159,14 +160,12 @@
     int sign_modifier = 0;
 
     for (output_count = 0; output_count < output_size; output_count++) {
-        int32_t x = 0;
+        int32_t x;
         int32_t x_modified;
         int32_t final_val;
 
         /* read x - number of 1s before 0 represent the rice */
-        while (x <= 8 && get_bits1(&alac->gb)) {
-            x++;
-        }
+        x = get_unary_0_9(&alac->gb);
 
         if (x > 8) { /* RICE THRESHOLD */
             /* use alternative encoding */
@@ -227,10 +226,7 @@
 
             sign_modifier = 1;
 
-            x = 0;
-            while (x <= 8 && get_bits1(&alac->gb)) {
-                x++;
-            }
+            x = get_unary_0_9(&alac->gb);
 
             if (x > 8) {
                 block_size = get_bits(&alac->gb, 16);
--- a/unary.h	Sat Sep 01 14:00:47 2007 +0000
+++ b/unary.h	Sat Sep 01 21:03:17 2007 +0000
@@ -48,4 +48,9 @@
     return get_unary(gb, 0, 33);
 }
 
+static inline int get_unary_0_9(GetBitContext *gb)
+{
+    return get_unary(gb, 0, 9);
+}
+
 #endif /* AVCODEC_UNARY_H */