avcodec/mpeg12data: Remove unused ff_rl_mpeg2

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-10-22 02:03:29 +02:00
parent 4a8fe21ab4
commit 6bb0760a91
2 changed files with 0 additions and 9 deletions

View File

@ -172,14 +172,6 @@ RLTable ff_rl_mpeg1 = {
mpeg1_level,
};
RLTable ff_rl_mpeg2 = {
111,
111,
ff_mpeg2_vlc_table,
mpeg1_run,
mpeg1_level,
};
const uint8_t ff_mpeg12_mbAddrIncrTable[36][2] = {
{0x1, 1},
{0x3, 3},

View File

@ -53,7 +53,6 @@ void ff_mpeg12_init_vlcs(void);
#define MPEG12_RL_NB_ELEMS 111
extern RLTable ff_rl_mpeg1;
extern RLTable ff_rl_mpeg2;
extern const uint16_t ff_mpeg1_vlc_table[MPEG12_RL_NB_ELEMS + 2][2];
extern const uint16_t ff_mpeg2_vlc_table[MPEG12_RL_NB_ELEMS + 2][2];