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.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.c')
-rw-r--r-- | libswresample/resample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index ffb03f034e..6124b8a035 100644 --- a/libswresample/resample.c +++ b/libswresample/resample.c @@ -238,7 +238,7 @@ static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_r c->index= -phase_count*((c->filter_length-1)/2); c->frac= 0; - swresample_dsp_init(c); + swri_resample_dsp_init(c); return c; error: |