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/mpegvideo.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/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 660b7990ef..da19243966 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -34,6 +34,7 @@ #include "mjpegenc.h" #include "msmpeg4.h" #include "faandct.h" +#include "xvmc_internal.h" #include <limits.h> //#undef NDEBUG @@ -54,10 +55,6 @@ static void dct_unquantize_h263_intra_c(MpegEncContext *s, static void dct_unquantize_h263_inter_c(MpegEncContext *s, DCTELEM *block, int n, int qscale); -int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx); -void ff_xvmc_field_end(MpegEncContext *s); -void ff_xvmc_decode_mb(MpegEncContext *s); - /* enable all paranoid tests for rounding, overflows, etc... */ //#define PARANOID |