]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cook.c
doc/filters: Documentation to add sess_config option for tensorflow backend
[ffmpeg] / libavcodec / cook.c
index 4d06488c109b1ac0c8d6681740d1b39599f39dce..361baeb3ac298844aba4bc0faf53cc34643e8aa2 100644 (file)
@@ -44,6 +44,7 @@
 
 #include "libavutil/channel_layout.h"
 #include "libavutil/lfg.h"
+#include "libavutil/mem_internal.h"
 
 #include "audiodsp.h"
 #include "avcodec.h"
@@ -65,6 +66,9 @@
 #define SUBBAND_SIZE    20
 #define MAX_SUBPACKETS   5
 
+#define QUANT_VLC_BITS    9
+#define COUPLING_VLC_BITS 6
+
 typedef struct cook_gains {
     int *now;
     int *previous;
@@ -212,7 +216,7 @@ static av_cold int init_cook_vlc_tables(COOKContext *q)
 
     result = 0;
     for (i = 0; i < 13; i++) {
-        result |= build_vlc(&q->envelope_quant_index[i], 9,
+        result |= build_vlc(&q->envelope_quant_index[i], QUANT_VLC_BITS,
                             envelope_quant_index_huffcounts[i],
                             envelope_quant_index_huffsyms[i], 1, -12, q->avctx);
     }
@@ -226,7 +230,7 @@ static av_cold int init_cook_vlc_tables(COOKContext *q)
 
     for (i = 0; i < q->num_subpackets; i++) {
         if (q->subpacket[i].joint_stereo == 1) {
-            result |= build_vlc(&q->subpacket[i].channel_coupling, 6,
+            result |= build_vlc(&q->subpacket[i].channel_coupling, COUPLING_VLC_BITS,
                                 ccpl_huffcounts[q->subpacket[i].js_vlc_bits - 2],
                                 ccpl_huffsyms[q->subpacket[i].js_vlc_bits - 2], 1,
                                 0, q->avctx);
@@ -396,7 +400,7 @@ static int decode_envelope(COOKContext *q, COOKSubpacket *p,
             vlc_index = 13; // the VLC tables >13 are identical to No. 13
 
         j = get_vlc2(&q->gb, q->envelope_quant_index[vlc_index - 1].table,
-                     q->envelope_quant_index[vlc_index - 1].bits, 2);
+                     QUANT_VLC_BITS, 2);
         quant_index_table[i] = quant_index_table[i - 1] + j; // differential encoding
         if (quant_index_table[i] > 63 || quant_index_table[i] < -63) {
             av_log(q->avctx, AV_LOG_ERROR,
@@ -775,7 +779,7 @@ static int decouple_info(COOKContext *q, COOKSubpacket *p, int *decouple_tab)
         for (i = 0; i < length; i++)
             decouple_tab[start + i] = get_vlc2(&q->gb,
                                                p->channel_coupling.table,
-                                               p->channel_coupling.bits, 3);
+                                               COUPLING_VLC_BITS, 3);
     else
         for (i = 0; i < length; i++) {
             int v = get_bits(&q->gb, p->js_vlc_bits);
@@ -1288,7 +1292,7 @@ static av_cold int cook_decode_init(AVCodecContext *avctx)
     return 0;
 }
 
-AVCodec ff_cook_decoder = {
+const AVCodec ff_cook_decoder = {
     .name           = "cook",
     .long_name      = NULL_IF_CONFIG_SMALL("Cook / Cooker / Gecko (RealAudio G2)"),
     .type           = AVMEDIA_TYPE_AUDIO,