summaryrefslogtreecommitdiff
path: root/libswresample/swresample_internal.h
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-16 08:00:31 +0100
committerClément Bœsch <ubitux@gmail.com>2011-11-17 10:16:07 +0100
commitfc6351d019047ecd8f2fcd0a5aadedfac9fc617b (patch)
tree9879135649454708882d652ea23f34d578240b79 /libswresample/swresample_internal.h
parent3a5fc3857435ee1653379e4c8e60d254563a82c9 (diff)
swr: make audio convert code explicitely private.
Only what's declared in libswresample/swresample.h is public.
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r--libswresample/swresample_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h
index 4764ddfd6f..460a7538cf 100644
--- a/libswresample/swresample_internal.h
+++ b/libswresample/swresample_internal.h
@@ -58,9 +58,9 @@ typedef struct SwrContext { //FIXME find unused fields
int in_buffer_count;
int resample_in_constraint;
- struct AVAudioConvert *in_convert;
- struct AVAudioConvert *out_convert;
- struct AVAudioConvert *full_convert;
+ struct AudioConvert *in_convert;
+ struct AudioConvert *out_convert;
+ struct AudioConvert *full_convert;
struct AVResampleContext *resample;
float matrix[SWR_CH_MAX][SWR_CH_MAX];