diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-02 00:25:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-02 01:12:10 +0200 |
commit | 6d5bf67f0475a54282b755ae21add252efc640b1 (patch) | |
tree | d61dab1a89d713832d8b9c5ff1651c0a44e22dfa /libswresample/swresample_internal.h | |
parent | 9b42653b22d43b89de96a00abe7fd61f9e048eb2 (diff) | |
download | ffmpeg-6d5bf67f0475a54282b755ae21add252efc640b1.tar.gz |
swr: add lfe_mix_level
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 550d7f0eb2..15687f7865 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -50,6 +50,7 @@ struct SwrContext { int flags; ///< miscellaneous flags such as SWR_FLAG_RESAMPLE float slev; ///< surround mixing level float clev; ///< center mixing level + float lfe_mix_level; ///< LFE mixing level float rematrix_volume; ///< rematrixing volume coefficient 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) |