33#define A52_PASSTHRU 12
35#define AUDIO_DEVICE_SPEAKER_ARRANGEMENT_HELP \
36 _("speaker arrangement"), \
37 _("Select how your speakers are arranged, " \
38 "this determines which speakers xine uses for sound output. " \
39 "The individual values are:\n\n" \
40 "Mono 1.0: You have only one speaker.\n" \
41 "Stereo 2.0: You have two speakers for left and right channel.\n" \
42 "Headphones 2.0: You use headphones.\n" \
43 "Stereo 2.1: You have two speakers for left and right channel, and one " \
44 "subwoofer for the low frequencies.\n" \
45 "Surround 3.0: You have three speakers for left, right and rear channel.\n" \
46 "Surround 4.0: You have four speakers for front left and right and rear " \
47 "left and right channels.\n" \
48 "Surround 4.1: You have four speakers for front left and right and rear " \
49 "left and right channels, and one subwoofer for the low frequencies.\n" \
50 "Surround 5.0: You have five speakers for front left, center and right and " \
51 "rear left and right channels.\n" \
52 "Surround 5.1: You have five speakers for front left, center and right and " \
53 "rear left and right channels, and one subwoofer for the low frequencies.\n" \
54 "Surround 6.0: You have six speakers for front left, center and right and " \
55 "rear left, center and right channels.\n" \
56 "Surround 6.1: You have six speakers for front left, center and right and " \
57 "rear left, center and right channels, and one subwoofer for the low frequencies.\n" \
58 "Surround 7.1: You have seven speakers for front left, center and right, " \
59 "left and right and rear left and right channels, and one subwoofer for the " \
60 "low frequencies.\n" \
61 "Pass Through: Your sound system will receive undecoded digital sound from xine. " \
62 "You need to connect a digital surround decoder capable of decoding the " \
63 "formats you want to play to your sound card's digital output.")
65#define AUDIO_DEVICE_SPEAKER_ARRANGEMENT_TYPES \
66 static const char * const speaker_arrangement[] = { \
67 "Mono 1.0", "Stereo 2.0", "Headphones 2.0", "Stereo 2.1", \
68 "Surround 3.0", "Surround 4.0", "Surround 4.1", "Surround 5.0", \
69 "Surround 5.1", "Surround 6.0", "Surround 6.1", "Surround 7.1", \
70 "Pass Through", NULL};