summaryrefslogtreecommitdiff
path: root/libswresample/rematrix.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-16 08:12:48 +0100
committerClément Bœsch <ubitux@gmail.com>2011-11-17 10:16:07 +0100
commitc4deb90cfaf7ef64bb80216ca1aa95db95a6f521 (patch)
tree64db1b380978f5296d3e9e32db7ce0359076f66e /libswresample/rematrix.c
parent64db5a1a57579666ecf90d0a8f8d3080748df700 (diff)
swr: use "swri_" prefix instead of "swr_" for the private API.
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r--libswresample/rematrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 130bb7416a..0e4d9630c8 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -84,7 +84,7 @@ static int sane_layout(int64_t layout){
return 1;
}
-int swr_rematrix_init(SwrContext *s){
+int swri_rematrix_init(SwrContext *s){
int i, j, out_i;
double matrix[64][64]={{0}};
int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
@@ -239,7 +239,7 @@ int swr_rematrix_init(SwrContext *s){
return 0;
}
-int swr_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){
+int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){
int out_i, in_i, i, j;
av_assert0(out->ch_count == av_get_channel_layout_nb_channels(s->out_ch_layout));