Mercurial > libavcodec.hg
diff mpegvideo.h @ 542:d55978a3c369 libavcodec
rl vlc decoding optimizations
| author | michaelni |
|---|---|
| date | Sat, 13 Jul 2002 14:55:12 +0000 |
| parents | 3c07cf9595de |
| children | 18ad513d92fe |
line wrap: on
line diff
--- a/mpegvideo.h Fri Jul 12 12:41:32 2002 +0000 +++ b/mpegvideo.h Sat Jul 13 14:55:12 2002 +0000 @@ -482,7 +482,6 @@ void ff_mpeg1_encode_init(MpegEncContext *s); /* h263enc.c */ - typedef struct RLTable { int n; /* number of entries of table_vlc minus 1 */ int last; /* number of values for last = 0 */ @@ -492,7 +491,8 @@ UINT8 *index_run[2]; /* encoding only */ INT8 *max_level[2]; /* encoding & decoding */ INT8 *max_run[2]; /* encoding & decoding */ - VLC vlc; /* decoding only */ + VLC vlc; /* decoding only deprected FIXME remove*/ + RL_VLC_ELEM *rl_vlc[32]; /* decoding only */ } RLTable; void init_rl(RLTable *rl);
