diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-22 03:23:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-22 03:23:54 +0200 |
commit | e2b718464e92fcde3d21c6653c88ddec2ab21c3f (patch) | |
tree | c69eae690667f39c9f0b2ecd0e064a4a02bf4174 /libswresample/swresample_internal.h | |
parent | 5169111145bc1d08861a059346ac8900b9aee716 (diff) | |
download | ffmpeg-e2b718464e92fcde3d21c6653c88ddec2ab21c3f.tar.gz |
swresample: Make rematrix maxvalue user settable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 108f837f23..ab19f212fe 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -82,6 +82,7 @@ struct SwrContext { float clev; ///< center mixing level float lfe_mix_level; ///< LFE mixing level float rematrix_volume; ///< rematrixing volume coefficient + float rematrix_maxval; ///< maximum value for rematrixing output enum AVMatrixEncoding matrix_encoding; /**< matrixed stereo encoding */ const int *channel_map; ///< channel index (or -1 if muted channel) map int used_ch_count; ///< number of used input channels (mapped channel count if channel_map, otherwise in.ch_count) |