diff options
author | James Almer <jamrial@gmail.com> | 2014-07-02 00:05:08 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-02 13:18:30 +0200 |
commit | b5f0eac0689bb7837a53486a4c2e576d71555ab6 (patch) | |
tree | d64b67d961a5b72acb2c3a67754b89168387f44a /libswresample/resample_dsp.c | |
parent | 1619a0e2b8fdb873c43f0878da9f7dbe363314dc (diff) | |
download | ffmpeg-b5f0eac0689bb7837a53486a4c2e576d71555ab6.tar.gz |
swr: rename swresample_dsp init functions to swri_resample_dsp
The swresample_ prefix is not for internal functions
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/resample_dsp.c')
-rw-r--r-- | libswresample/resample_dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/resample_dsp.c b/libswresample/resample_dsp.c index b792d420ca..f12b6b171a 100644 --- a/libswresample/resample_dsp.c +++ b/libswresample/resample_dsp.c @@ -43,7 +43,7 @@ #include "resample_template.c" #undef TEMPLATE_RESAMPLE_DBL -void swresample_dsp_init(ResampleContext *c) +void swri_resample_dsp_init(ResampleContext *c) { #define FNIDX(fmt) (AV_SAMPLE_FMT_##fmt - AV_SAMPLE_FMT_S16P) c->dsp.resample_one[FNIDX(S16P)] = (resample_one_fn) resample_one_int16; @@ -61,5 +61,5 @@ void swresample_dsp_init(ResampleContext *c) c->dsp.resample_linear[FNIDX(FLTP)] = (resample_fn) resample_linear_float; c->dsp.resample_linear[FNIDX(DBLP)] = (resample_fn) resample_linear_double; - if (ARCH_X86) swresample_dsp_x86_init(c); + if (ARCH_X86) swri_resample_dsp_x86_init(c); } |