2001-08-23 04:01:46 +00:00
|
|
|
/*
|
|
|
|
QF/plugin/sound.h
|
|
|
|
|
|
|
|
Sound Output plugin data types
|
|
|
|
|
|
|
|
Copyright (C) 2001 Jeff Teunissen <deek@quakeforge.net>
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
2021-06-22 10:47:20 +00:00
|
|
|
#ifndef __QF_plugin_snd_output_h
|
|
|
|
#define __QF_plugin_snd_output_h
|
2001-08-23 04:01:46 +00:00
|
|
|
|
2012-02-13 12:58:34 +00:00
|
|
|
#include <QF/plugin.h>
|
2001-08-23 04:01:46 +00:00
|
|
|
#include <QF/qtypes.h>
|
|
|
|
|
2021-06-23 15:04:02 +00:00
|
|
|
struct snd_s;
|
2001-08-23 04:01:46 +00:00
|
|
|
|
|
|
|
typedef struct snd_output_funcs_s {
|
2021-06-23 15:04:02 +00:00
|
|
|
int (*init) (struct snd_s *snd);
|
|
|
|
void (*shutdown) (struct snd_s *snd);
|
|
|
|
int (*get_dma_pos) (struct snd_s *snd);
|
|
|
|
void (*submit) (struct snd_s *snd);
|
2021-06-25 04:52:50 +00:00
|
|
|
void (*on_update) (struct snd_s *snd);
|
2021-06-23 15:04:02 +00:00
|
|
|
void (*block_sound) (struct snd_s *snd);
|
|
|
|
void (*unblock_sound) (struct snd_s *snd);
|
2001-08-23 04:01:46 +00:00
|
|
|
} snd_output_funcs_t;
|
|
|
|
|
2021-06-25 02:41:42 +00:00
|
|
|
typedef enum {
|
|
|
|
som_push, // synchronous io (mixer pushes data to driver)
|
|
|
|
som_pull, // asynchronous io (driver pulls data from mixer)
|
|
|
|
} snd_output_model_t;
|
|
|
|
|
2001-08-23 04:01:46 +00:00
|
|
|
typedef struct snd_output_data_s {
|
2005-06-08 06:35:48 +00:00
|
|
|
unsigned *soundtime;
|
|
|
|
unsigned *paintedtime;
|
2021-06-25 02:41:42 +00:00
|
|
|
snd_output_model_t model;
|
2001-08-23 04:01:46 +00:00
|
|
|
} snd_output_data_t;
|
|
|
|
|
2021-06-22 10:47:20 +00:00
|
|
|
#endif // __QF_plugin_snd_output_h
|