summaryrefslogtreecommitdiff
path: root/src/sink_input.h
blob: 82797c0ea127d408cbf4f5cff997bf85b4592a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SINK_INPUT_H
#define SINK_INPUT_H

#include <glib.h>
#include <pulse/pulseaudio.h>

typedef struct _sink_input_info {
	guint32 index;
	guint32 sink;
	gchar *name;
	gchar *pid;	// maybe useless?!!?
	gint mute;
	guint8 channels;
	pa_volume_t vol; // TOTO: exchange with the channel-list
} sink_input_info;

#endif