Mercurial > audio-send
view Alc/backends/loopback.c @ 13:92b416b4e027
fixed all problems for 16 bit mono output
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 31 Oct 2011 07:44:02 -0700 |
parents | f9476ff7637e |
children |
line wrap: on
line source
1 /**2 * OpenAL cross platform audio library3 * Copyright (C) 2011 by Chris Robinson4 * This library is free software; you can redistribute it and/or5 * modify it under the terms of the GNU Library General Public6 * License as published by the Free Software Foundation; either7 * version 2 of the License, or (at your option) any later version.8 *9 * This library is distributed in the hope that it will be useful,10 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU12 * Library General Public License for more details.13 *14 * You should have received a copy of the GNU Library General Public15 * License along with this library; if not, write to the16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,17 * Boston, MA 02111-1307, USA.18 * Or go to http://www.gnu.org/copyleft/lgpl.html19 */21 #include "config.h"23 #include <stdlib.h>24 #include "alMain.h"25 #include "AL/al.h"26 #include "AL/alc.h"29 static ALCboolean loopback_open_playback(ALCdevice *device, const ALCchar *deviceName)30 {31 device->szDeviceName = strdup(deviceName);32 return ALC_TRUE;33 }35 static void loopback_close_playback(ALCdevice *device)36 {37 (void)device;38 }40 static ALCboolean loopback_reset_playback(ALCdevice *device)41 {42 SetDefaultWFXChannelOrder(device);43 return ALC_TRUE;44 }46 static void loopback_stop_playback(ALCdevice *device)47 {48 (void)device;49 }51 static const BackendFuncs loopback_funcs = {52 loopback_open_playback,53 loopback_close_playback,54 loopback_reset_playback,55 loopback_stop_playback,56 NULL,57 NULL,58 NULL,59 NULL,60 NULL,61 NULL62 };64 ALCboolean alc_loopback_init(BackendFuncs *func_list)65 {66 *func_list = loopback_funcs;67 return ALC_TRUE;68 }70 void alc_loopback_deinit(void)71 {72 }74 void alc_loopback_probe(enum DevProbe type)75 {76 (void)type;77 }