Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-30 02:20:07 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-04 18:41:34 +0300
commitfccb23b7dddc28769013a3185fa79834ef3699d9 (patch)
tree872a334066600d560de24cb755afe7fef5a6aa78 /libavcodec/mpeg12dec.h
parentb92e14147f8efb32f3dbbb112dbaa5a5ab9bcd03 (diff)
avcodec/mpeg12vlc: Move MPEG-1/2 RL VLCs to it
It is better place for these declarations than mpeg12data.h as RL VLC are just a variant of VLCs. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg12dec.h')
-rw-r--r--libavcodec/mpeg12dec.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/mpeg12dec.h b/libavcodec/mpeg12dec.h
index b4e94a92ce..4c015d3096 100644
--- a/libavcodec/mpeg12dec.h
+++ b/libavcodec/mpeg12dec.h
@@ -24,16 +24,6 @@
#include "get_bits.h"
#include "mpeg12vlc.h"
-#include "rl.h"
-
-#define INIT_2D_VLC_RL(rl, static_size, flags)\
-{\
- static RL_VLC_ELEM rl_vlc_table[static_size];\
- rl.rl_vlc[0] = rl_vlc_table;\
- ff_init_2d_vlc_rl(&rl, static_size, flags);\
-}
-
-void ff_init_2d_vlc_rl(RLTable *rl, unsigned static_size, int flags);
static inline int decode_dc(GetBitContext *gb, int component)
{