diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-03 03:01:06 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2002-07-03 03:01:06 +0000 |
commit | e0580f8c688f0dcb87f2bf71b08f477ba583e8dd (patch) | |
tree | 009a07b3b0233a93a398f212ba94e984a5712685 /libavcodec/mpegvideo.h | |
parent | dde3f77dbc30a6564ca8ad373b7517f282983bdb (diff) | |
download | ffmpeg-e0580f8c688f0dcb87f2bf71b08f477ba583e8dd.tar.gz |
Update and activate dct_unquantize_h263_mvi. Thanks to Måns Rullgård
for some improvements.
Originally committed as revision 714 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index f25f5dcb38..90e852e164 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -451,6 +451,9 @@ void MPV_frame_end(MpegEncContext *s); #ifdef HAVE_MMX void MPV_common_init_mmx(MpegEncContext *s); #endif +#ifdef ARCH_ALPHA +void MPV_common_init_axp(MpegEncContext *s); +#endif extern int (*dct_quantize)(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); extern void (*draw_edges)(UINT8 *buf, int wrap, int width, int height, int w); void ff_conceal_past_errors(MpegEncContext *s, int conceal_all); |