diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-14 20:37:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-14 20:37:14 +0000 |
commit | 4440bd0da42f77369a9ba3e857e7f39e4250e481 (patch) | |
tree | d2b43d70778239ae225d84c81a9bee57857d59d5 /libavcodec/mpeg12.c | |
parent | 6e2803405d3dcab99a8cf5261515acb7b3b1c47c (diff) | |
download | ffmpeg-4440bd0da42f77369a9ba3e857e7f39e4250e481.tar.gz |
Add xvmc_internal.h that contains all internal xvmc function declarations.
This allows getting rid of a bunch of ugly forward declarations.
Originally committed as revision 17280 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 14754eca9c..81c7342cfe 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -35,6 +35,7 @@ #include "mpeg12decdata.h" #include "bytestream.h" #include "vdpau_internal.h" +#include "xvmc_internal.h" //#undef NDEBUG //#include <assert.h> @@ -61,11 +62,6 @@ static inline int mpeg2_fast_decode_block_intra(MpegEncContext *s, DCTELEM *bloc static int mpeg_decode_motion(MpegEncContext *s, int fcode, int pred); static void exchange_uv(MpegEncContext *s); -int ff_xvmc_field_start(MpegEncContext *s, AVCodecContext *avctx); -int ff_xvmc_field_end(MpegEncContext *s); -void ff_xvmc_pack_pblocks(MpegEncContext *s,int cbp); -void ff_xvmc_init_block(MpegEncContext *s);//set s->block - static const enum PixelFormat pixfmt_xvmc_mpg2_420[] = { PIX_FMT_XVMC_MPEG2_IDCT, PIX_FMT_XVMC_MPEG2_MC, |