From 486497e07b4617d9548a5b7347076f1b329bd417 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Tue, 14 Nov 2006 03:18:09 +0000 Subject: revert bad checkin Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/imgresample.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/imgresample.c') diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index e742d62214..ce1a05ce4b 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -469,7 +469,7 @@ static void h_resample(uint8_t *dst, int dst_width, const uint8_t *src, n = dst_width; } #ifdef HAVE_MMX - if ((ff_mm_flags & MM_MMX) && NB_TAPS == 4) + if ((mm_flags & MM_MMX) && NB_TAPS == 4) h_resample_fast4_mmx(dst, n, src, src_width, src_start, src_incr, filters); else @@ -527,14 +527,14 @@ static void component_resample(ImgReSampleContext *s, phase_y = get_phase(src_y); #ifdef HAVE_MMX /* desactivated MMX because loss of precision */ - if ((ff_mm_flags & MM_MMX) && NB_TAPS == 4 && 0) + if ((mm_flags & MM_MMX) && NB_TAPS == 4 && 0) v_resample4_mmx(output, owidth, s->line_buf + (ring_y - NB_TAPS + 1) * owidth, owidth, &s->v_filters[phase_y][0]); else #endif #ifdef HAVE_ALTIVEC - if ((ff_mm_flags & MM_ALTIVEC) && NB_TAPS == 4 && FILTER_BITS <= 6) + if ((mm_flags & MM_ALTIVEC) && NB_TAPS == 4 && FILTER_BITS <= 6) v_resample16_altivec(output, owidth, s->line_buf + (ring_y - NB_TAPS + 1) * owidth, owidth, &s->v_filters[phase_y][0]); -- cgit v1.2.3