diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 19:26:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 19:39:42 +0100 |
commit | 6747b0be9b2a8e20724c6e514b3c8374c32fd6f0 (patch) | |
tree | abd4ec6a6d46098aeb9e2537f7977ed35b904d77 /libavcodec/mlp_parser.h | |
parent | d4e5d8d4c264955f3df8c6947b38913f9ee3eb18 (diff) | |
download | ffmpeg-6747b0be9b2a8e20724c6e514b3c8374c32fd6f0.tar.gz |
mlp: fix channel order.
This fixes a regression introduced with todays merge
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mlp_parser.h')
-rw-r--r-- | libavcodec/mlp_parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mlp_parser.h b/libavcodec/mlp_parser.h index f9638bb868..9967abbad2 100644 --- a/libavcodec/mlp_parser.h +++ b/libavcodec/mlp_parser.h @@ -39,6 +39,7 @@ typedef struct MLPHeaderInfo int group1_samplerate; ///< Sample rate of first substream int group2_samplerate; ///< Sample rate of second substream (MLP only) + int channel_arrangement; int channels_mlp; ///< Channel count for MLP streams int channels_thd_stream1; ///< Channel count for substream 1 of TrueHD streams ("6-channel presentation") int channels_thd_stream2; ///< Channel count for substream 2 of TrueHD streams ("8-channel presentation") |