diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-15 10:08:31 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-15 10:08:31 +0000 |
commit | 9506090df9baca63520a438d8e13f211d8953733 (patch) | |
tree | 6eb14a2b1aa61734a55801fef4a337a2b1b9db8a /libavcodec/cavs.h | |
parent | 40f06241213a430a8f2ab65a98b280cb96c30fa1 (diff) | |
download | ffmpeg-9506090df9baca63520a438d8e13f211d8953733.tar.gz |
Avoid POSIX-reserved _t in identifier names.
Originally committed as revision 16142 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavs.h')
-rw-r--r-- | libavcodec/cavs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/cavs.h b/libavcodec/cavs.h index c684acf799..2a1a90eb9d 100644 --- a/libavcodec/cavs.h +++ b/libavcodec/cavs.h @@ -144,13 +144,13 @@ DECLARE_ALIGNED_8(typedef, struct) { int16_t ref; } vector_t; -typedef struct dec_2dvlc_t { +struct dec_2dvlc { int8_t rltab[59][3]; int8_t level_add[27]; int8_t golomb_order; int inc_limit; int8_t max_run; -} dec_2dvlc_t; +}; typedef struct { MpegEncContext s; @@ -226,9 +226,9 @@ typedef struct { extern const uint8_t ff_cavs_dequant_shift[64]; extern const uint16_t ff_cavs_dequant_mul[64]; -extern const dec_2dvlc_t ff_cavs_intra_dec[7]; -extern const dec_2dvlc_t ff_cavs_inter_dec[7]; -extern const dec_2dvlc_t ff_cavs_chroma_dec[5]; +extern const struct dec_2dvlc ff_cavs_intra_dec[7]; +extern const struct dec_2dvlc ff_cavs_inter_dec[7]; +extern const struct dec_2dvlc ff_cavs_chroma_dec[5]; extern const uint8_t ff_cavs_chroma_qp[64]; extern const uint8_t ff_cavs_scan3x3[4]; extern const uint8_t ff_cavs_partition_flags[30]; |