summaryrefslogtreecommitdiffstats
path: root/libao2/ao_oss.c
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2012-04-28 00:39:19 +0200
committerwm4 <wm4@mplayer2.org>2012-04-28 00:54:26 +0200
commit87f4cafe9c0881743d1117c2e8cd7e3376e33302 (patch)
treef41caa5aad8969d769a777c0a7912751721a66bd /libao2/ao_oss.c
parent1324eaece08d84fbe3eb539642dba99b74dd1c07 (diff)
parentb711624ef350d1e971f5fcc57eb4af9f74233d2a (diff)
downloadmpv-87f4cafe9c0881743d1117c2e8cd7e3376e33302.tar.bz2
mpv-87f4cafe9c0881743d1117c2e8cd7e3376e33302.tar.xz
Merge remote-tracking branch 'origin/master'
Conflicts: command.c libao2/ao_alsa.c libao2/ao_dsound.c libao2/ao_pulse.c libao2/audio_out.h mixer.c mixer.h mplayer.c Replace my mixer changes with uau's implementation, which is based on my code.
Diffstat (limited to 'libao2/ao_oss.c')
-rw-r--r--libao2/ao_oss.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libao2/ao_oss.c b/libao2/ao_oss.c
index 82a0dd51e5..9290a73380 100644
--- a/libao2/ao_oss.c
+++ b/libao2/ao_oss.c
@@ -179,22 +179,6 @@ static int volume_oss4(ao_control_vol_t *vol, int cmd) {
// to set/get/query special features/parameters
static int control(int cmd,void *arg){
switch(cmd){
- case AOCONTROL_SET_DEVICE:
- dsp=(char*)arg;
- return CONTROL_OK;
- case AOCONTROL_GET_DEVICE:
- *(char**)arg=dsp;
- return CONTROL_OK;
-#ifdef SNDCTL_DSP_GETFMTS
- case AOCONTROL_QUERY_FORMAT:
- {
- int format;
- if (!ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &format))
- if ((unsigned int)format & (unsigned long)arg)
- return CONTROL_TRUE;
- return CONTROL_FALSE;
- }
-#endif
case AOCONTROL_GET_VOLUME:
case AOCONTROL_SET_VOLUME:
{