You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.0KB

  1. /*
  2. * audio_out.h
  3. * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
  4. * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  5. *
  6. * This file is part of a52dec, a free ATSC A-52 stream decoder.
  7. * See http://liba52.sourceforge.net/ for updates.
  8. *
  9. * a52dec is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * a52dec is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. typedef struct ao_instance_s ao_instance_t;
  24. struct ao_instance_s {
  25. int (* setup) (ao_instance_t * instance, int sample_rate, int * flags,
  26. sample_t * level, sample_t * bias);
  27. int (* play) (ao_instance_t * instance, int flags, sample_t * samples);
  28. void (* close) (ao_instance_t * instance);
  29. };
  30. typedef ao_instance_t * ao_open_t (void);
  31. typedef struct ao_driver_s {
  32. char * name;
  33. ao_open_t * open;
  34. } ao_driver_t;
  35. /* return NULL terminated array of all drivers */
  36. ao_driver_t * ao_drivers (void);
  37. static inline ao_instance_t * ao_open (ao_open_t * open)
  38. {
  39. return open ();
  40. }
  41. static inline int ao_setup (ao_instance_t * instance, int sample_rate,
  42. int * flags, sample_t * level, sample_t * bias)
  43. {
  44. return instance->setup (instance, sample_rate, flags, level, bias);
  45. }
  46. static inline int ao_play (ao_instance_t * instance, int flags,
  47. sample_t * samples)
  48. {
  49. return instance->play (instance, flags, samples);
  50. }
  51. static inline void ao_close (ao_instance_t * instance)
  52. {
  53. if (instance->close)
  54. instance->close (instance);
  55. }