aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorDan Christiansen <danchr@daimi.au.dk>2003-10-19 21:05:41 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-19 21:05:41 +0000
commitdc7cb06ae0f1a24ca0aa106eacc332ceba518928 (patch)
tree0ceb16ec5a54f279e929937435f9bcdeb6318aab /libavcodec/avcodec.h
parent4cb3f3b6376474ae251421d5bb318998a3776ae8 (diff)
downloadffmpeg-dc7cb06ae0f1a24ca0aa106eacc332ceba518928.tar.gz
gcc->C99 and warning fixes patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
Originally committed as revision 2399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 90834f1ffe..271561c79f 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -208,8 +208,8 @@ extern int motion_estimation_method;
/* ME algos sorted by quality */
//FIXME remove IMHO
-static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG,
- ME_X1, ME_EPZS, ME_FULL };
+static const __attribute__((unused)) int Motion_Est_QTab[] =
+ { ME_ZERO, ME_PHODS, ME_LOG, ME_X1, ME_EPZS, ME_FULL };
#define FF_MAX_B_FRAMES 8