FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tableprint_vlc.h
Go to the documentation of this file.
1 /*
2  * Helpers for generating hard-coded VLC tables
3  *
4  * Copyright (c) 2014 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #ifndef AVCODEC_TABLEPRINT_VLC_H
24 #define AVCODEC_TABLEPRINT_VLC_H
25 
26 #define AVUTIL_LOG_H
27 #define av_log(a, ...) while(0)
28 #define ff_dlog(a, ...) while(0)
29 #define ff_tlog(a, ...) while(0)
30 #define AVUTIL_MEM_H
31 #define av_malloc(s) NULL
32 #define av_malloc_array(a, b) NULL
33 #define av_realloc_f(p, o, n) NULL
34 #define av_free(p) while(0)
35 #define av_freep(p) while(0)
36 #define AVUTIL_INTERNAL_H
37 #define avpriv_request_sample(...)
38 #include "tableprint.h"
39 #include "vlc.h"
40 #include "libavutil/reverse.c"
41 #include "vlc.c"
42 
43 // The following will have to be modified if VLCBaseType changes.
44 WRITE_1D_FUNC_ARGV(VLCElem, 3, "{ .sym =%5" PRId16 ", .len =%2"PRIi16 " }",
45  data[i].sym, data[i].len)
46 
47 static void write_vlc_type(const VLC *vlc, const VLCElem *base_table, const char *base_table_name)
48 {
49  printf(" .bits = %i,\n", vlc->bits);
50  // Unfortunately need to cast away const currently
51  printf(" .table = (VLCElem *)(%s + 0x%x),\n", base_table_name, (int)(vlc->table - base_table));
52  printf(" .table_size = 0x%x,\n", vlc->table_size);
53  printf(" .table_allocated = 0x%x,\n", vlc->table_allocated);
54 }
55 
56 #define WRITE_VLC_TABLE(prefix, name) \
57  WRITE_ARRAY(prefix, VLCElem, name)
58 
59 #define WRITE_VLC_TYPE(prefix, name, base_table) \
60  do { \
61  printf(prefix" VLC "#name" = {\n"); \
62  write_vlc_type(&name, base_table, #base_table); \
63  printf("};\n"); \
64  } while(0)
65 
66 #define WRITE_VLC_ARRAY(prefix, name, base_table) \
67  do { \
68  int i; \
69  const size_t array_size = FF_ARRAY_ELEMS(name); \
70  printf(prefix" VLC "#name"[%"FMT"] = {{\n", \
71  array_size); \
72  for (i = 0; i < array_size; i++) { \
73  write_vlc_type(name + i, \
74  base_table, #base_table); \
75  if (i != array_size - 1) printf("}, {\n"); \
76  } \
77  printf("}};\n"); \
78  } while(0)
79 
80 #endif /* AVCODEC_TABLEPRINT_VLC_H */
tableprint.h
base_table
const VLCElem * base_table
Definition: tableprint_vlc.h:47
data
const char data[16]
Definition: mxf.c:149
printf
printf(" .table = (VLCElem *)(%s + 0x%x),\n", base_table_name,(int)(vlc->table - base_table))
WRITE_1D_FUNC_ARGV
WRITE_1D_FUNC_ARGV(VLCElem, 3, "{ .sym =%5" PRId16 ", .len =%2"PRIi16 " }", data[i].sym, data[i].len) static void write_vlc_type(const VLC *vlc
base_table_name
const VLCElem const char * base_table_name
Definition: tableprint_vlc.h:48
VLCElem
Definition: vlc.h:32
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
reverse.c
len
int len
Definition: vorbis_enc_data.h:426
VLC
Definition: vlc.h:50
vlc.h
vlc.c