1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*
* audio_out.c
* Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
* Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
*
* This file is part of a52dec, a free ATSC A-52 stream decoder.
* See http://liba52.sourceforge.net/ for updates.
*
* a52dec is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* a52dec is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include <stdlib.h>
#include <inttypes.h>
#include "dca.h"
#include "audio_out.h"
extern ao_open_t ao_oss_open;
extern ao_open_t ao_ossdolby_open;
extern ao_open_t ao_oss4_open;
extern ao_open_t ao_oss6_open;
extern ao_open_t ao_solaris_open;
extern ao_open_t ao_solarisdolby_open;
extern ao_open_t ao_al_open;
extern ao_open_t ao_aldolby_open;
extern ao_open_t ao_al4_open;
extern ao_open_t ao_al6_open;
extern ao_open_t ao_win_open;
extern ao_open_t ao_windolby_open;
extern ao_open_t ao_wav_open;
extern ao_open_t ao_wavdolby_open;
extern ao_open_t ao_wav6_open;
extern ao_open_t ao_wavall_open;
extern ao_open_t ao_aif_open;
extern ao_open_t ao_aifdolby_open;
extern ao_open_t ao_peak_open;
extern ao_open_t ao_peakdolby_open;
extern ao_open_t ao_null_open;
extern ao_open_t ao_null4_open;
extern ao_open_t ao_null6_open;
extern ao_open_t ao_float_open;
static ao_driver_t audio_out_drivers[] = {
#ifdef LIBAO_OSS
{"oss", ao_oss_open},
{"ossdolby", ao_ossdolby_open},
{"oss4", ao_oss4_open},
{"oss6", ao_oss6_open},
#endif
#ifdef LIBAO_SOLARIS
{"solaris", ao_solaris_open},
{"solarisdolby", ao_solarisdolby_open},
#endif
#ifdef LIBAO_AL
{"al", ao_al_open},
{"aldolby", ao_aldolby_open},
{"al4", ao_al4_open},
{"al6", ao_al6_open},
#endif
#ifdef LIBAO_WIN
{"win", ao_win_open},
{"windolby", ao_windolby_open},
#endif
{"wav", ao_wav_open},
{"wavdolby", ao_wavdolby_open},
{"wav6", ao_wav6_open},
{"wavall", ao_wavall_open},
{"aif", ao_aif_open},
{"aifdolby", ao_aifdolby_open},
{"peak", ao_peak_open},
{"peakdolby", ao_peakdolby_open},
{"null", ao_null_open},
{"null4", ao_null4_open},
{"null6", ao_null6_open},
{"float", ao_float_open},
{NULL, NULL}
};
ao_driver_t * ao_drivers (void)
{
return audio_out_drivers;
}
|