diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-20 21:49:09 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 16:02:03 +0200 |
commit | 383fd4d47807353d2f42691099b46bb96e199ab7 (patch) | |
tree | 8cec592758966ccd130f052000f836596a2fd8fa /libavcodec/arm/h264pred_init_arm.c | |
parent | 088f38a4f9f54bb923405c67c9e72d96d90aa284 (diff) | |
download | ffmpeg-383fd4d47807353d2f42691099b46bb96e199ab7.tar.gz |
arm: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavcodec/arm/h264pred_init_arm.c')
-rw-r--r-- | libavcodec/arm/h264pred_init_arm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/arm/h264pred_init_arm.c b/libavcodec/arm/h264pred_init_arm.c index fb4bbdd468..2e25c2a271 100644 --- a/libavcodec/arm/h264pred_init_arm.c +++ b/libavcodec/arm/h264pred_init_arm.c @@ -45,9 +45,9 @@ void ff_pred8x8_0lt_dc_neon(uint8_t *src, ptrdiff_t stride); void ff_pred8x8_l00_dc_neon(uint8_t *src, ptrdiff_t stride); void ff_pred8x8_0l0_dc_neon(uint8_t *src, ptrdiff_t stride); -static av_cold void ff_h264_pred_init_neon(H264PredContext *h, int codec_id, - const int bit_depth, - const int chroma_format_idc) +static av_cold void h264_pred_init_neon(H264PredContext *h, int codec_id, + const int bit_depth, + const int chroma_format_idc) { const int high_depth = bit_depth > 8; @@ -85,5 +85,5 @@ av_cold void ff_h264_pred_init_arm(H264PredContext *h, int codec_id, int cpu_flags = av_get_cpu_flags(); if (have_neon(cpu_flags)) - ff_h264_pred_init_neon(h, codec_id, bit_depth, chroma_format_idc); + h264_pred_init_neon(h, codec_id, bit_depth, chroma_format_idc); } |