summaryrefslogtreecommitdiff
path: root/libswresample/swresample_internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-05 23:46:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-06 00:07:03 +0200
commit503e5e9db5f8ab7f0782e27ddd0265a2b22bd7b6 (patch)
treecdc58fff68b8bcd2a9f18d29ec6f7f08d7391f81 /libswresample/swresample_internal.h
parent63b6d5f33fa9724111c46504c6f07dc516379a75 (diff)
libswresample: support directly converting sampleformats and packed/planar in a single pass.
Previously a intermediate planar format was used when both input and output where packed. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r--libswresample/swresample_internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h
index c883269313..a9f1fe1211 100644
--- a/libswresample/swresample_internal.h
+++ b/libswresample/swresample_internal.h
@@ -58,6 +58,7 @@ typedef struct SwrContext { //FIXME find unused fields
struct AVAudioConvert *in_convert;
struct AVAudioConvert *out_convert;
+ struct AVAudioConvert *full_convert;
struct AVResampleContext *resample;
float matrix[SWR_CH_MAX][SWR_CH_MAX];