summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-04-02 09:57:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-04-02 09:57:34 +0000
commit4d2a48349d6f40a2357bb25b4f360f2a6e669ad4 (patch)
tree7ff32c6ab3f7e58dd201f2a05093f404cd35908c /libavcodec/mpeg12.c
parent1f9aea9b91c653c6ad95e84b2ff250738e352eec (diff)
msmpeg4 2pass support & some related cleanup
Originally committed as revision 1724 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index 95ce87edf3..019e29370b 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -80,16 +80,6 @@ static uint32_t uni_mpeg1_ac_vlc_bits[64*64*2];
static uint8_t uni_mpeg1_ac_vlc_len [64*64*2];
#endif
-static inline int get_bits_diff(MpegEncContext *s){
- int bits,ret;
-
- bits= get_bit_count(&s->pb);
- ret= bits - s->last_bits;
- s->last_bits=bits;
-
- return ret;
-}
-
static void init_2d_vlc_rl(RLTable *rl)
{
int i;