Commit dc7cb06a authored by Dan Christiansen's avatar Dan Christiansen Committed by Michael Niedermayer

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
parent 4cb3f3b6
......@@ -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
......
......@@ -185,9 +185,9 @@ inline void dprintf(const char* fmt,...) {}
# else
# ifdef DEBUG
# define dprintf(fmt,args...) printf(fmt, ## args)
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# else
# define dprintf(fmt,args...)
# define dprintf(fmt,...)
# endif
# endif /* !CONFIG_WIN32 */
......
......@@ -1293,7 +1293,7 @@ static const uint16_t dv_audio_shuffle625[12][9] = {
{ 31, 67, 103, 21, 57, 93, 11, 47, 83},
};
static const int dv_audio_frequency[3] = {
static const __attribute__((unused)) int dv_audio_frequency[3] = {
48000, 44100, 32000,
};
......
......@@ -21,7 +21,7 @@
/**
* @file ffv1.c
* FF Video Codec 1 (a experimental lossless codec)
* FF Video Codec 1 (an experimental lossless codec)
*/
#include "common.h"
......
......@@ -876,7 +876,7 @@ static int ipvideo_decode_init(AVCodecContext *avctx)
if (s->avctx->extradata_size != sizeof(AVPaletteControl)) {
printf (" Interplay video: expected extradata_size of %d\n",
sizeof(AVPaletteControl));
(int)sizeof(AVPaletteControl));
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment