summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_rsound.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 19:07:27 +0200
committerwm4 <wm4@nowhere>2013-10-23 19:30:02 +0200
commitd58d4ec93c6a89cea3488689f12f6e7abd0617c9 (patch)
tree0b8114a6989cceeccde41693160a5db411476fe5 /audio/out/ao_rsound.c
parent6d44a4dfd1487611dd8ff3da4a6566e64c17106a (diff)
downloadmpv-d58d4ec93c6a89cea3488689f12f6e7abd0617c9.tar.bz2
mpv-d58d4ec93c6a89cea3488689f12f6e7abd0617c9.tar.xz
audio/out: remove useless info struct and redundant fields
Diffstat (limited to 'audio/out/ao_rsound.c')
-rw-r--r--audio/out/ao_rsound.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/out/ao_rsound.c b/audio/out/ao_rsound.c
index 5bfdbcef0f..162fb21feb 100644
--- a/audio/out/ao_rsound.c
+++ b/audio/out/ao_rsound.c
@@ -179,12 +179,8 @@ static float get_delay(struct ao *ao)
#define OPT_BASE_STRUCT struct priv
const struct ao_driver audio_out_rsound = {
- .info = &(const struct ao_info) {
- .name = "RSound output driver",
- .short_name = "rsound",
- .author = "Hans-Kristian Arntzen",
- .comment = "",
- },
+ .description = "RSound output driver",
+ .name = "rsound",
.init = init,
.uninit = uninit,
.reset = reset,