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:
authorMichael Niedermayer <michaelni@gmx.at>2015-04-12 21:50:53 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-04-12 23:21:34 +0300
commit80a28c7509a11114e1aea5b208d56c6646d69c07 (patch)
tree3c1771c91c989bee9a47649376b9e6c96807b34d /libswresample/swresample_internal.h
parentd7b9cb2f7a51351586791e65fa22e6536ee58c9f (diff)
swresample: Allow reinitialization without ever setting channel layouts
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r--libswresample/swresample_internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h
index c9e8476806..7296a3f772 100644
--- a/libswresample/swresample_internal.h
+++ b/libswresample/swresample_internal.h
@@ -115,6 +115,8 @@ struct SwrContext {
int user_in_ch_count; ///< User set input channel count
int user_out_ch_count; ///< User set output channel count
int user_used_ch_count; ///< User set used channel count
+ int64_t user_in_ch_layout; ///< User set input channel layout
+ int64_t user_out_ch_layout; ///< User set output channel layout
struct DitherContext dither;