summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorIvan Kalvachev <ikalvachev@gmail.com>2003-11-13 21:55:05 +0000
committerIvan Kalvachev <ikalvachev@gmail.com>2003-11-13 21:55:05 +0000
commit57489bc511e6781055a20f4d38258a5c61302560 (patch)
tree4848c8076a2e610a8b766c99f96ce2dd33fe79a4 /libavcodec/mpeg12.c
parent9515c0c10749a5c91c623bdde749f75e72d5afee (diff)
silence few warnings
Originally committed as revision 2514 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index 7dfad6fed8..b31d830505 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -68,12 +68,13 @@ static inline int mpeg2_decode_block_intra(MpegEncContext *s,
DCTELEM *block,
int n);
static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred);
+static void exchange_uv(MpegEncContext *s);
#ifdef HAVE_XVMC
extern int XVMC_field_start(MpegEncContext *s, AVCodecContext *avctx);
extern int XVMC_field_end(MpegEncContext *s);
extern void XVMC_pack_pblocks(MpegEncContext *s,int cbp);
-extern void XVMC_init_block(s);//set s->block
+extern void XVMC_init_block(MpegEncContext *s);//set s->block
#endif
#ifdef CONFIG_ENCODERS