From 9506090df9baca63520a438d8e13f211d8953733 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 15 Dec 2008 10:08:31 +0000 Subject: Avoid POSIX-reserved _t in identifier names. Originally committed as revision 16142 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cavs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavcodec/cavs.h') 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]; -- cgit v1.2.3