diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-01-06 17:22:45 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-09 11:04:05 -0800 |
commit | 4acd43a295aae0a88ae26cd54cd06b1df146e815 (patch) | |
tree | e8428e86ff0081ef10d654c9c94237a1fc588855 /libavcodec/aac.h | |
parent | 1ef8ff4534706de0b1da3442f380be58a650acf2 (diff) | |
download | ffmpeg-4acd43a295aae0a88ae26cd54cd06b1df146e815.tar.gz |
aacdec: Turn off PS for multichannel files that use PCE based configs.
Fixes al_sbr_cm_48_5.1.mp4.
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 30491fe85a..a36080cb6f 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -84,6 +84,7 @@ enum BandType { #define IS_CODEBOOK_UNSIGNED(x) ((x - 1) & 10) enum ChannelPosition { + AAC_CHANNEL_OFF = 0, AAC_CHANNEL_FRONT = 1, AAC_CHANNEL_SIDE = 2, AAC_CHANNEL_BACK = 3, |