2004-06-15 17:05:03 +00:00
|
|
|
#ifndef foosinkinputhfoo
|
|
|
|
|
#define foosinkinputhfoo
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
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.
|
|
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef struct pa_sink_input pa_sink_input;
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/sample.h>
|
|
|
|
|
#include <pulsecore/sink.h>
|
|
|
|
|
#include <pulsecore/memblockq.h>
|
|
|
|
|
#include <pulsecore/resampler.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/client.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
typedef enum pa_sink_input_state {
|
2004-09-14 20:53:25 +00:00
|
|
|
PA_SINK_INPUT_RUNNING,
|
2004-09-26 17:02:26 +00:00
|
|
|
PA_SINK_INPUT_CORKED,
|
2004-09-14 20:53:25 +00:00
|
|
|
PA_SINK_INPUT_DISCONNECTED
|
2006-01-27 16:25:31 +00:00
|
|
|
} pa_sink_input_state_t;
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink_input {
|
2004-09-14 20:53:25 +00:00
|
|
|
int ref;
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t index;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sink_input_state_t state;
|
|
|
|
|
|
|
|
|
|
char *name, *driver;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *owner;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink *sink;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_client *client;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec sample_spec;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_channel_map channel_map;
|
|
|
|
|
|
|
|
|
|
pa_cvolume volume;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int (*peek) (pa_sink_input *i, pa_memchunk *chunk);
|
|
|
|
|
void (*drop) (pa_sink_input *i, const pa_memchunk *chunk, size_t length);
|
|
|
|
|
void (*kill) (pa_sink_input *i);
|
|
|
|
|
pa_usec_t (*get_latency) (pa_sink_input *i);
|
|
|
|
|
void (*underrun) (pa_sink_input *i);
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
void *userdata;
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-10-27 14:14:30 +00:00
|
|
|
int playing;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk resampled_chunk;
|
|
|
|
|
pa_resampler *resampler;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sink_input* pa_sink_input_new(
|
|
|
|
|
pa_sink *s,
|
|
|
|
|
const char *driver,
|
|
|
|
|
const char *name,
|
|
|
|
|
const pa_sample_spec *spec,
|
|
|
|
|
const pa_channel_map *map,
|
2006-05-14 00:41:18 +00:00
|
|
|
const pa_cvolume *volume,
|
2006-01-27 16:25:31 +00:00
|
|
|
int variable_rate,
|
|
|
|
|
int resample_method);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_unref(pa_sink_input* i);
|
|
|
|
|
pa_sink_input* pa_sink_input_ref(pa_sink_input* i);
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
/* To be called by the implementing module only */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_disconnect(pa_sink_input* i);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
|
|
|
|
/* External code may request disconnection with this funcion */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_kill(pa_sink_input*i);
|
2004-06-15 00:29:01 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_usec_t pa_sink_input_get_latency(pa_sink_input *i);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
int pa_sink_input_peek(pa_sink_input *i, pa_memchunk *chunk, pa_cvolume *volume);
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_drop(pa_sink_input *i, const pa_memchunk *chunk, size_t length);
|
2004-07-02 18:47:03 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
void pa_sink_input_set_volume(pa_sink_input *i, const pa_cvolume *volume);
|
|
|
|
|
const pa_cvolume * pa_sink_input_get_volume(pa_sink_input *i);
|
2004-08-15 13:15:51 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_cork(pa_sink_input *i, int b);
|
2004-08-22 21:13:58 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_set_rate(pa_sink_input *i, uint32_t rate);
|
2004-09-14 17:52:11 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_input_set_name(pa_sink_input *i, const char *name);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_resample_method_t pa_sink_input_get_resample_method(pa_sink_input *i);
|
2004-11-20 16:23:53 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#endif
|