comparison sparc/dsputil_vis.c @ 5688:c0f471cc871d libavcodec

Remove redundant ARCH_SPARC #ifdef, the file is compiled conditional to ARCH_SPARC anyway.
author diego
date Mon, 17 Sep 2007 10:14:56 +0000
parents ad0ab0eebd69
children ace63c809071
comparison
equal deleted inserted replaced
5687:18cfb83b7dc7 5688:c0f471cc871d
22 /* The *no_round* functions have been added by James A. Morrison, 2003,2004. 22 /* The *no_round* functions have been added by James A. Morrison, 2003,2004.
23 The vis code from libmpeg2 was adapted for ffmpeg by James A. Morrison. 23 The vis code from libmpeg2 was adapted for ffmpeg by James A. Morrison.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27
28 #ifdef ARCH_SPARC
29 27
30 #include <inttypes.h> 28 #include <inttypes.h>
31 #include <signal.h> 29 #include <signal.h>
32 #include <setjmp.h> 30 #include <setjmp.h>
33 31
4095 c->avg_no_rnd_pixels_tab[1][1] = MC_avg_no_round_x_8_vis; 4093 c->avg_no_rnd_pixels_tab[1][1] = MC_avg_no_round_x_8_vis;
4096 c->avg_no_rnd_pixels_tab[1][2] = MC_avg_no_round_y_8_vis; 4094 c->avg_no_rnd_pixels_tab[1][2] = MC_avg_no_round_y_8_vis;
4097 c->avg_no_rnd_pixels_tab[1][3] = MC_avg_no_round_xy_8_vis; 4095 c->avg_no_rnd_pixels_tab[1][3] = MC_avg_no_round_xy_8_vis;
4098 } 4096 }
4099 } 4097 }
4100
4101 #endif /* !(ARCH_SPARC) */