summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-11 19:08:15 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-11 19:08:15 +0000
commita8a53e872e32c131f74eabe9f612cabf899e6d7b (patch)
tree73901771f26043a4c5fcb59d585a535ea6367c5a
parent849d578842c37d3b4c12cb35c44270719ce515a6 (diff)
downloadmpv-a8a53e872e32c131f74eabe9f612cabf899e6d7b.tar.bz2
mpv-a8a53e872e32c131f74eabe9f612cabf899e6d7b.tar.xz
Revert r30170, AF_FORMAT_AC3 is supposed to be the special mask,
and should not include other parts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30275 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libaf/af_format.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libaf/af_format.h b/libaf/af_format.h
index e5e5c1cb05..66a74c901e 100644
--- a/libaf/af_format.h
+++ b/libaf/af_format.h
@@ -59,7 +59,7 @@
#define AF_FORMAT_MU_LAW (1<<6)
#define AF_FORMAT_A_LAW (2<<6)
#define AF_FORMAT_MPEG2 (3<<6) // MPEG(2) audio
-#define AF_FORMAT_AC3 ((4<<6)|AF_FORMAT_16BIT) // Dolby Digital AC3
+#define AF_FORMAT_AC3 (4<<6) // Dolby Digital AC3
#define AF_FORMAT_IMA_ADPCM (5<<6)
#define AF_FORMAT_SPECIAL_MASK (7<<6)