summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-05 22:55:45 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-05 22:55:45 +0000
commit3053a8b7f248363d7f47c5718e1b292b7f974960 (patch)
treeda0af1c1ba6b9dc2872aa7aa85f4d5ad88b10f6e /cfg-common.h
parent18e342e06c5e756bfa8e2de056ab716bd590a5a9 (diff)
downloadmpv-3053a8b7f248363d7f47c5718e1b292b7f974960.tar.bz2
mpv-3053a8b7f248363d7f47c5718e1b292b7f974960.tar.xz
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7605 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 6fa1478c0b..8071ec876a 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -91,6 +91,7 @@
// force video/audio rate:
{"fps", &force_fps, CONF_TYPE_FLOAT, CONF_MIN, 0, 0, NULL},
{"srate", &force_srate, CONF_TYPE_INT, CONF_RANGE, 1000, 8*48000, NULL},
+ {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 1, 6, NULL},
// ------------------------- codec/vfilter options --------------------
@@ -187,6 +188,9 @@ extern float movie_aspect;
extern int softzoom;
extern int flip;
+/* from dec_audio, currently used for ac3surround decoder only */
+extern int audio_output_channels;
+
#ifdef STREAMING
/* defined in network.c */
extern char *network_username;