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:
authorTim Walker <tdskywalker@gmail.com>2014-01-17 18:57:40 +0400
committerTim Walker <tdskywalker@gmail.com>2014-01-19 22:12:42 +0400
commitc229f571fd3c7d7b567c27c87b2bbcdaee1b0e9f (patch)
treeb6b72196768c8731b4d4dbf1651fdda6634f7375 /libavcodec/ac3.h
parent1f604f96ea70503caa642f68a85be6074a5b3f46 (diff)
(e)ac3: parse and store the Lt/Rt and LFE mix levels.
Diffstat (limited to 'libavcodec/ac3.h')
-rw-r--r--libavcodec/ac3.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h
index f01da07213..fa290d35e9 100644
--- a/libavcodec/ac3.h
+++ b/libavcodec/ac3.h
@@ -104,6 +104,14 @@ typedef enum AC3DolbyHeadphoneMode {
AC3_DHEADPHONMOD_RESERVED
} AC3DolbyHeadphoneMode;
+/** Preferred Stereo Downmix mode */
+typedef enum AC3PreferredStereoDownmixMode {
+ AC3_DMIXMOD_NOTINDICATED = 0,
+ AC3_DMIXMOD_LTRT,
+ AC3_DMIXMOD_LORO,
+ AC3_DMIXMOD_RESERVED
+} AC3PreferredStereoDownmixMode;
+
typedef struct AC3BitAllocParameters {
int sr_code;
int sr_shift;