# HG changeset patch # User aurel # Date 1191432928 0 # Node ID da1d5375cf2021fee98b7fe0856d2dac844fe725 # Parent 72b59f7613af6f000eeed5c53be453419350f706 remove useless #ifdef diff -r 72b59f7613af -r da1d5375cf20 mpegvideo.h --- a/mpegvideo.h Wed Oct 03 14:01:42 2007 +0000 +++ b/mpegvideo.h Wed Oct 03 17:35:28 2007 +0000 @@ -699,24 +699,12 @@ int MPV_encode_init(AVCodecContext *avctx); int MPV_encode_end(AVCodecContext *avctx); int MPV_encode_picture(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data); -#ifdef HAVE_MMX void MPV_common_init_mmx(MpegEncContext *s); -#endif -#ifdef ARCH_ALPHA void MPV_common_init_axp(MpegEncContext *s); -#endif -#ifdef HAVE_MLIB void MPV_common_init_mlib(MpegEncContext *s); -#endif -#ifdef HAVE_MMI void MPV_common_init_mmi(MpegEncContext *s); -#endif -#ifdef ARCH_ARMV4L void MPV_common_init_armv4l(MpegEncContext *s); -#endif -#ifdef ARCH_POWERPC void MPV_common_init_ppc(MpegEncContext *s); -#endif extern void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w); void ff_clean_intra_table_entries(MpegEncContext *s); void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);