summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_rsound.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-05 21:07:30 +0200
committerwm4 <wm4@nowhere>2016-09-05 21:26:39 +0200
commit13786dc643fe250a9560792ef342751585ea15e9 (patch)
tree90c76da55639d200558d9372e507da72684194a9 /audio/out/ao_rsound.c
parent69283bc0f8905e7748343f2c5389791f858a5f4c (diff)
downloadmpv-13786dc643fe250a9560792ef342751585ea15e9.tar.bz2
mpv-13786dc643fe250a9560792ef342751585ea15e9.tar.xz
audio/out: deprecate device sub-options
We have --audio-device, which can force the device. Also add something describing to this extent to the manpage.
Diffstat (limited to 'audio/out/ao_rsound.c')
-rw-r--r--audio/out/ao_rsound.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/out/ao_rsound.c b/audio/out/ao_rsound.c
index 8b80ddf1da..65196d0932 100644
--- a/audio/out/ao_rsound.c
+++ b/audio/out/ao_rsound.c
@@ -156,8 +156,10 @@ const struct ao_driver audio_out_rsound = {
.resume = audio_resume,
.priv_size = sizeof(struct priv),
.options = (const struct m_option[]) {
- OPT_STRING("host", host, 0),
- OPT_STRING("port", port, 0),
+ OPT_STRING("host", host, 0,
+ .deprecation_message = "request --audio-device support on issue tracker"),
+ OPT_STRING("port", port, 0
+ .deprecation_message = "request --audio-device support on issue tracker"),
{0}
},
.legacy_prefix = "rsound",