# HG changeset patch # User mru # Date 1275516474 0 # Node ID 21566c95834c7f14a1d2de320f4b4b1171a60c6f # Parent 7c2369ec6faac4fde93c157cce15fa14963c22cb ARM: remove some unnecessary ifdefs, fix implicit declaration warnings diff -r 7c2369ec6faa -r 21566c95834c arm/h264dsp_init_arm.c --- a/arm/h264dsp_init_arm.c Wed Jun 02 22:05:25 2010 +0000 +++ b/arm/h264dsp_init_arm.c Wed Jun 02 22:07:54 2010 +0000 @@ -86,7 +86,6 @@ DCTELEM *block, int stride, const uint8_t nnzc[6*8]); -#if HAVE_NEON static void ff_h264dsp_init_neon(H264DSPContext *c) { c->h264_v_loop_filter_luma = ff_h264_v_loop_filter_luma_neon; @@ -118,7 +117,6 @@ c->h264_idct_add16intra = ff_h264_idct_add16intra_neon; c->h264_idct_add8 = ff_h264_idct_add8_neon; } -#endif void ff_h264dsp_init_arm(H264DSPContext *c) { diff -r 7c2369ec6faa -r 21566c95834c arm/h264pred_init_arm.c --- a/arm/h264pred_init_arm.c Wed Jun 02 22:05:25 2010 +0000 +++ b/arm/h264pred_init_arm.c Wed Jun 02 22:07:54 2010 +0000 @@ -42,7 +42,6 @@ void ff_pred8x8_l00_dc_neon(uint8_t *src, int stride); void ff_pred8x8_0l0_dc_neon(uint8_t *src, int stride); -#if HAVE_NEON static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id) { h->pred8x8[VERT_PRED8x8 ] = ff_pred8x8_vert_neon; @@ -68,7 +67,6 @@ if (codec_id != CODEC_ID_SVQ3 && codec_id != CODEC_ID_RV40) h->pred16x16[PLANE_PRED8x8 ] = ff_pred16x16_plane_neon; } -#endif void ff_h264_pred_init_arm(H264PredContext *h, int codec_id) {