cosmetic: rename VLC tables to make clear they

are for decoding

Originally committed as revision 9517 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefan Gehrer
2007-07-07 06:49:20 +00:00
parent 07caa46e99
commit ce7088b9a8
3 changed files with 10 additions and 10 deletions

View File

@@ -144,13 +144,13 @@ DECLARE_ALIGNED_8(typedef, struct) {
int16_t ref;
} vector_t;
typedef struct residual_vlc_t {
typedef struct dec_2dvlc_t {
int8_t rltab[59][3];
int8_t level_add[27];
int8_t golomb_order;
int inc_limit;
int8_t max_run;
} residual_vlc_t;
} dec_2dvlc_t;
typedef struct {
MpegEncContext s;