Blame subprojects/gvc/gvc-channel-map-private.h

Packit Service 999d52
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
Packit Service 999d52
 *
Packit Service 999d52
 * Copyright (C) 2008 Red Hat, Inc.
Packit Service 999d52
 *
Packit Service 999d52
 * This program is free software; you can redistribute it and/or modify
Packit Service 999d52
 * it under the terms of the GNU General Public License as published by
Packit Service 999d52
 * the Free Software Foundation; either version 2 of the License, or
Packit Service 999d52
 * (at your option) any later version.
Packit Service 999d52
 *
Packit Service 999d52
 * This program is distributed in the hope that it will be useful,
Packit Service 999d52
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 999d52
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 999d52
 * GNU General Public License for more details.
Packit Service 999d52
 *
Packit Service 999d52
 * You should have received a copy of the GNU General Public License
Packit Service 999d52
 * along with this program; if not, write to the Free Software
Packit Service 999d52
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Packit Service 999d52
 *
Packit Service 999d52
 */
Packit Service 999d52
Packit Service 999d52
#ifndef __GVC_CHANNEL_MAP_PRIVATE_H
Packit Service 999d52
#define __GVC_CHANNEL_MAP_PRIVATE_H
Packit Service 999d52
Packit Service 999d52
#include <glib-object.h>
Packit Service 999d52
#include <pulse/pulseaudio.h>
Packit Service 999d52
Packit Service 999d52
G_BEGIN_DECLS
Packit Service 999d52
Packit Service 999d52
GvcChannelMap *         gvc_channel_map_new_from_pa_channel_map (const pa_channel_map *map);
Packit Service 999d52
const pa_channel_map *  gvc_channel_map_get_pa_channel_map      (const GvcChannelMap  *map);
Packit Service 999d52
Packit Service 999d52
void                    gvc_channel_map_volume_changed          (GvcChannelMap    *map,
Packit Service 999d52
                                                                 const pa_cvolume *cv,
Packit Service 999d52
                                                                 gboolean          set);
Packit Service 999d52
const pa_cvolume *      gvc_channel_map_get_cvolume             (const GvcChannelMap  *map);
Packit Service 999d52
Packit Service 999d52
G_END_DECLS
Packit Service 999d52
Packit Service 999d52
#endif /* __GVC_CHANNEL_MAP_PRIVATE_H */