mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
avcodec/mpeg12data: Remove ff_rl_mpeg1
No longer used anywhere. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
a89b9d155b
commit
92b81a7c99
@ -37,6 +37,7 @@
|
|||||||
#include "mpeg12codecs.h"
|
#include "mpeg12codecs.h"
|
||||||
#include "mpeg12data.h"
|
#include "mpeg12data.h"
|
||||||
#include "mpeg12dec.h"
|
#include "mpeg12dec.h"
|
||||||
|
#include "rl.h"
|
||||||
#include "startcode.h"
|
#include "startcode.h"
|
||||||
|
|
||||||
static const uint8_t table_mb_ptype[7][2] = {
|
static const uint8_t table_mb_ptype[7][2] = {
|
||||||
|
@ -164,14 +164,6 @@ const int8_t ff_mpeg12_run[MPEG12_RL_NB_ELEMS] = {
|
|||||||
25, 26, 27, 28, 29, 30, 31,
|
25, 26, 27, 28, 29, 30, 31,
|
||||||
};
|
};
|
||||||
|
|
||||||
RLTable ff_rl_mpeg1 = {
|
|
||||||
111,
|
|
||||||
111,
|
|
||||||
ff_mpeg1_vlc_table,
|
|
||||||
ff_mpeg12_run,
|
|
||||||
ff_mpeg12_level,
|
|
||||||
};
|
|
||||||
|
|
||||||
const uint8_t ff_mpeg12_mbAddrIncrTable[36][2] = {
|
const uint8_t ff_mpeg12_mbAddrIncrTable[36][2] = {
|
||||||
{0x1, 1},
|
{0x1, 1},
|
||||||
{0x3, 3},
|
{0x3, 3},
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
#ifndef AVCODEC_MPEG12VLC_H
|
#ifndef AVCODEC_MPEG12VLC_H
|
||||||
#define AVCODEC_MPEG12VLC_H
|
#define AVCODEC_MPEG12VLC_H
|
||||||
|
|
||||||
#include "rl.h"
|
|
||||||
#include "vlc.h"
|
#include "vlc.h"
|
||||||
|
|
||||||
#define DC_VLC_BITS 9
|
#define DC_VLC_BITS 9
|
||||||
@ -52,8 +51,6 @@ void ff_mpeg12_init_vlcs(void);
|
|||||||
|
|
||||||
#define MPEG12_RL_NB_ELEMS 111
|
#define MPEG12_RL_NB_ELEMS 111
|
||||||
|
|
||||||
extern RLTable ff_rl_mpeg1;
|
|
||||||
|
|
||||||
extern const int8_t ff_mpeg12_level[MPEG12_RL_NB_ELEMS];
|
extern const int8_t ff_mpeg12_level[MPEG12_RL_NB_ELEMS];
|
||||||
extern const int8_t ff_mpeg12_run[MPEG12_RL_NB_ELEMS];
|
extern const int8_t ff_mpeg12_run[MPEG12_RL_NB_ELEMS];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user