mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
allow hooking into the process of creating playback streams. To implement this I modified the pa_sink_input_new() signature to take a pa_sink_input_new_data structure instead of direct arguments.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1237 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
b5cbea940e
commit
a621d90285
16 changed files with 291 additions and 133 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef fooclienthfoo
|
||||
#define fooclienthfoo
|
||||
#ifndef foopulseclienthfoo
|
||||
#define foopulseclienthfoo
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
|
|
@ -22,6 +22,10 @@
|
|||
USA.
|
||||
***/
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
typedef struct pa_client pa_client;
|
||||
|
||||
#include <pulsecore/core.h>
|
||||
#include <pulsecore/module.h>
|
||||
|
||||
|
|
@ -29,8 +33,6 @@
|
|||
* attached. That way the user may generate a listing of all connected
|
||||
* clients easily and kill them if he wants.*/
|
||||
|
||||
typedef struct pa_client pa_client;
|
||||
|
||||
struct pa_client {
|
||||
uint32_t index;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue