Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-07-02 07:05:08 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-02 15:18:30 +0400
commitb5f0eac0689bb7837a53486a4c2e576d71555ab6 (patch)
treed64b67d961a5b72acb2c3a67754b89168387f44a /libswresample/resample.h
parent1619a0e2b8fdb873c43f0878da9f7dbe363314dc (diff)
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.h')
-rw-r--r--libswresample/resample.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/resample.h b/libswresample/resample.h
index b484ceb328..bf00175d79 100644
--- a/libswresample/resample.h
+++ b/libswresample/resample.h
@@ -62,7 +62,7 @@ typedef struct ResampleContext {
} dsp;
} ResampleContext;
-void swresample_dsp_init(ResampleContext *c);
-void swresample_dsp_x86_init(ResampleContext *c);
+void swri_resample_dsp_init(ResampleContext *c);
+void swri_resample_dsp_x86_init(ResampleContext *c);
#endif /* SWRESAMPLE_RESAMPLE_H */