From c4deb90cfaf7ef64bb80216ca1aa95db95a6f521 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Wed, 16 Nov 2011 08:12:48 +0100 Subject: swr: use "swri_" prefix instead of "swr_" for the private API. --- libswresample/rematrix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libswresample/rematrix.c') 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)); -- cgit v1.2.3