2003-09-13 13:42:08 +00:00
|
|
|
/* GStreamer Mixer
|
|
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2003-09-13 01:20:04 +00:00
|
|
|
*
|
|
|
|
* mixer.h: mixer interface design
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_MIXER_H__
|
|
|
|
#define __GST_MIXER_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2011-11-30 06:57:02 +00:00
|
|
|
#include <gst/audio/mixeroptions.h>
|
|
|
|
#include <gst/audio/mixertrack.h>
|
2003-09-13 01:20:04 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2003-09-13 01:20:04 +00:00
|
|
|
#define GST_TYPE_MIXER \
|
|
|
|
(gst_mixer_get_type ())
|
|
|
|
#define GST_MIXER(obj) \
|
2011-06-26 20:46:08 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_MIXER, GstMixer))
|
2003-09-13 01:20:04 +00:00
|
|
|
#define GST_IS_MIXER(obj) \
|
2011-06-26 20:46:08 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_MIXER))
|
2011-10-21 12:37:31 +00:00
|
|
|
#define GST_MIXER_GET_INTERFACE(inst) \
|
|
|
|
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_MIXER, GstMixerInterface))
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2003-09-13 01:20:04 +00:00
|
|
|
typedef struct _GstMixer GstMixer;
|
2011-10-21 12:37:31 +00:00
|
|
|
typedef struct _GstMixerInterface GstMixerInterface;
|
2003-09-13 01:20:04 +00:00
|
|
|
|
2011-05-23 19:58:22 +00:00
|
|
|
/**
|
|
|
|
* GstMixerType:
|
|
|
|
* @GST_MIXER_HARDWARE: mixing is implemented with dedicated hardware.
|
|
|
|
* @GST_MIXER_SOFTWARE: mixing is implemented via software processing.
|
|
|
|
*
|
|
|
|
* Mixer classification.
|
|
|
|
*/
|
ext/alsa/gstalsamixer.c: Setting mixer interface type to HARDWARE.
Original commit message from CVS:
2004-01-15 Julien MOUTTE <julien@moutte.net>
* ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
mixer interface type to HARDWARE.
* gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
type to SOFTWARE.
* gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
* gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
* gst/volume/gstvolume.c: (gst_volume_interface_supported),
(gst_volume_interface_init), (gst_volume_list_tracks),
(gst_volume_set_volume), (gst_volume_get_volume),
(gst_volume_set_mute), (gst_volume_mixer_init),
(gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
(volume_init): Implementing mixer interface.
* gst/volume/gstvolume.h: Adding tracklist for mixer interface.
* sys/oss/gstosselement.c: (gst_osselement_get_type),
(gst_osselement_change_state): Removing some trailing commas in
structures.
* sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
interface type to HARDWARE.
* sys/v4l/gstv4lcolorbalance.c:
(gst_v4l_color_balance_interface_init): Setting colorbalance interface
type to HARDWARE.
* sys/v4l2/gstv4l2colorbalance.c:
(gst_v4l2_color_balance_interface_init): Setting colorbalance
interface type to HARDWARE.
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
same code than ximagesink for event handling.
2004-01-15 15:50:10 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_MIXER_HARDWARE,
|
|
|
|
GST_MIXER_SOFTWARE
|
|
|
|
} GstMixerType;
|
|
|
|
|
2007-07-21 09:21:12 +00:00
|
|
|
/**
|
|
|
|
* GstMixerMessageType:
|
|
|
|
* @GST_MIXER_MESSAGE_INVALID: Not a GstMixer message
|
|
|
|
* @GST_MIXER_MESSAGE_MUTE_TOGGLED: A mute-toggled GstMixer message
|
|
|
|
* @GST_MIXER_MESSAGE_RECORD_TOGGLED: A record-toggled GstMixer message
|
|
|
|
* @GST_MIXER_MESSAGE_VOLUME_CHANGED: A volume-changed GstMixer message
|
|
|
|
* @GST_MIXER_MESSAGE_OPTION_CHANGED: An option-changed GstMixer message
|
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed...
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
(gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
(gst_mixer_message_get_type),
(gst_mixer_message_parse_option_changed),
(gst_mixer_message_parse_options_list_changed):
* gst-libs/gst/interfaces/mixer.h: (GstMixerType),
(GST_MIXER_MESSAGE_OPTION_CHANGED),
(GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
(GST_MIXER_MESSAGE_MIXER_CHANGED):
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
2008-03-03 13:56:38 +00:00
|
|
|
* @GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED: An options-list-changed
|
|
|
|
* GstMixer message, posted when the list of available options for a
|
|
|
|
* GstMixerOptions object has changed (Since: 0.10.18)
|
|
|
|
* @GST_MIXER_MESSAGE_MIXER_CHANGED: A mixer-changed GstMixer message, posted
|
|
|
|
* when the list of available mixer tracks has changed. The application
|
|
|
|
* should re-build its interface in this case (Since: 0.10.18)
|
2009-09-09 08:25:33 +00:00
|
|
|
*
|
2007-07-21 09:21:12 +00:00
|
|
|
* An enumeration for the type of a GstMixer message received on the bus
|
|
|
|
*
|
|
|
|
* Since: 0.10.14
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_MIXER_MESSAGE_INVALID,
|
|
|
|
GST_MIXER_MESSAGE_MUTE_TOGGLED,
|
|
|
|
GST_MIXER_MESSAGE_RECORD_TOGGLED,
|
|
|
|
GST_MIXER_MESSAGE_VOLUME_CHANGED,
|
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed...
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
(gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
(gst_mixer_message_get_type),
(gst_mixer_message_parse_option_changed),
(gst_mixer_message_parse_options_list_changed):
* gst-libs/gst/interfaces/mixer.h: (GstMixerType),
(GST_MIXER_MESSAGE_OPTION_CHANGED),
(GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
(GST_MIXER_MESSAGE_MIXER_CHANGED):
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
2008-03-03 13:56:38 +00:00
|
|
|
GST_MIXER_MESSAGE_OPTION_CHANGED,
|
|
|
|
GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED,
|
|
|
|
GST_MIXER_MESSAGE_MIXER_CHANGED
|
2007-07-21 09:21:12 +00:00
|
|
|
} GstMixerMessageType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMixerFlags:
|
|
|
|
* @GST_MIXER_FLAG_NONE: No flags
|
2009-06-11 10:16:15 +00:00
|
|
|
* @GST_MIXER_FLAG_AUTO_NOTIFICATIONS: The mixer implementation automatically
|
|
|
|
* sends notification messages.
|
|
|
|
* @GST_MIXER_FLAG_HAS_WHITELIST: The mixer implementation flags tracks that
|
|
|
|
* should be displayed by default (whitelisted). Since: 0.10.23
|
2009-02-24 17:23:58 +00:00
|
|
|
* @GST_MIXER_FLAG_GROUPING: The mixer implementation will leave some controls
|
|
|
|
* marked without either input or output. Controls marked as input or
|
|
|
|
* output should be grouped with input & output sliders, even if they
|
|
|
|
* are options or bare switches. Since: 0.10.23
|
2009-09-09 08:25:33 +00:00
|
|
|
*
|
2009-06-11 10:16:15 +00:00
|
|
|
* Flags indicating which optional features are supported by a mixer
|
|
|
|
* implementation.
|
2007-07-21 09:21:12 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.14
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_MIXER_FLAG_NONE = 0,
|
2009-02-24 17:23:58 +00:00
|
|
|
GST_MIXER_FLAG_AUTO_NOTIFICATIONS = (1<<0),
|
|
|
|
GST_MIXER_FLAG_HAS_WHITELIST = (1<<1),
|
|
|
|
GST_MIXER_FLAG_GROUPING = (1<<2),
|
2007-07-21 09:21:12 +00:00
|
|
|
} GstMixerFlags;
|
|
|
|
|
2011-10-21 12:37:31 +00:00
|
|
|
struct _GstMixerInterface {
|
2011-11-11 17:49:09 +00:00
|
|
|
GTypeInterface iface;
|
2003-09-13 01:20:04 +00:00
|
|
|
|
|
|
|
/* virtual functions */
|
2004-03-15 16:32:55 +00:00
|
|
|
const GList * (* list_tracks) (GstMixer *mixer);
|
2003-10-09 22:02:35 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
void (* set_volume) (GstMixer *mixer,
|
2005-12-06 19:42:02 +00:00
|
|
|
GstMixerTrack *track,
|
|
|
|
gint *volumes);
|
2004-03-15 16:32:55 +00:00
|
|
|
void (* get_volume) (GstMixer *mixer,
|
2005-12-06 19:42:02 +00:00
|
|
|
GstMixerTrack *track,
|
|
|
|
gint *volumes);
|
2003-10-09 22:02:35 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
void (* set_mute) (GstMixer *mixer,
|
2005-12-06 19:42:02 +00:00
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean mute);
|
2004-03-15 16:32:55 +00:00
|
|
|
void (* set_record) (GstMixer *mixer,
|
2005-12-06 19:42:02 +00:00
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean record);
|
2011-11-11 17:49:09 +00:00
|
|
|
void (* set_option) (GstMixer *mixer,
|
2007-05-18 15:10:08 +00:00
|
|
|
GstMixerOptions *opts,
|
|
|
|
gchar *value);
|
2011-11-11 17:49:09 +00:00
|
|
|
const gchar * (* get_option) (GstMixer *mixer,
|
2007-05-18 15:10:08 +00:00
|
|
|
GstMixerOptions *opts);
|
|
|
|
|
2009-09-09 08:25:33 +00:00
|
|
|
GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);
|
Revert commits towards #152864 made so far. We'll pick it up again after the 0.10.13 release.
Original commit message from CVS:
* ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
(gst_alsa_mixer_free), (gst_alsa_mixer_update),
(gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
(gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
(gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
* ext/alsa/gstalsamixer.h:
* ext/alsa/gstalsamixerelement.c:
(gst_alsa_mixer_element_interface_supported),
(gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
(gst_alsa_mixer_element_set_property),
(gst_alsa_mixer_element_get_property),
(gst_alsa_mixer_element_change_state):
* ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
(gst_mixer_option_changed):
* gst-libs/gst/interfaces/mixer.h:
Revert commits towards #152864 made so far. We'll pick it up again
after the 0.10.13 release.
2007-05-25 10:07:26 +00:00
|
|
|
|
2012-02-22 09:19:13 +00:00
|
|
|
GstMixerType (* get_mixer_type) (GstMixer *mixer);
|
2004-06-01 20:08:52 +00:00
|
|
|
};
|
2003-09-13 01:20:04 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
GType gst_mixer_get_type (void);
|
2003-09-13 01:20:04 +00:00
|
|
|
|
|
|
|
/* virtual class function wrappers */
|
2005-12-06 19:42:02 +00:00
|
|
|
const GList * gst_mixer_list_tracks (GstMixer *mixer);
|
|
|
|
void gst_mixer_set_volume (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gint *volumes);
|
|
|
|
void gst_mixer_get_volume (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gint *volumes);
|
|
|
|
void gst_mixer_set_mute (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean mute);
|
|
|
|
void gst_mixer_set_record (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean record);
|
|
|
|
void gst_mixer_set_option (GstMixer *mixer,
|
|
|
|
GstMixerOptions *opts,
|
|
|
|
gchar *value);
|
|
|
|
const gchar * gst_mixer_get_option (GstMixer *mixer,
|
|
|
|
GstMixerOptions *opts);
|
2003-12-07 12:11:30 +00:00
|
|
|
|
2007-07-21 09:21:12 +00:00
|
|
|
/* trigger bus messages */
|
2005-12-06 19:42:02 +00:00
|
|
|
void gst_mixer_mute_toggled (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean mute);
|
|
|
|
void gst_mixer_record_toggled (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
|
|
|
gboolean record);
|
|
|
|
void gst_mixer_volume_changed (GstMixer *mixer,
|
|
|
|
GstMixerTrack *track,
|
Revert commits towards #152864 made so far. We'll pick it up again after the 0.10.13 release.
Original commit message from CVS:
* ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
(gst_alsa_mixer_free), (gst_alsa_mixer_update),
(gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
(gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
(gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
* ext/alsa/gstalsamixer.h:
* ext/alsa/gstalsamixerelement.c:
(gst_alsa_mixer_element_interface_supported),
(gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
(gst_alsa_mixer_element_set_property),
(gst_alsa_mixer_element_get_property),
(gst_alsa_mixer_element_change_state):
* ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_update):
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_volume_changed),
(gst_mixer_option_changed):
* gst-libs/gst/interfaces/mixer.h:
Revert commits towards #152864 made so far. We'll pick it up again
after the 0.10.13 release.
2007-05-25 10:07:26 +00:00
|
|
|
gint *volumes);
|
2005-12-06 19:42:02 +00:00
|
|
|
void gst_mixer_option_changed (GstMixer *mixer,
|
|
|
|
GstMixerOptions *opts,
|
2010-03-15 21:49:53 +00:00
|
|
|
const gchar *value);
|
2003-09-13 01:20:04 +00:00
|
|
|
|
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed...
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
(gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
(gst_mixer_message_get_type),
(gst_mixer_message_parse_option_changed),
(gst_mixer_message_parse_options_list_changed):
* gst-libs/gst/interfaces/mixer.h: (GstMixerType),
(GST_MIXER_MESSAGE_OPTION_CHANGED),
(GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
(GST_MIXER_MESSAGE_MIXER_CHANGED):
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
2008-03-03 13:56:38 +00:00
|
|
|
void gst_mixer_mixer_changed (GstMixer *mixer);
|
|
|
|
|
|
|
|
void gst_mixer_options_list_changed (GstMixer *mixer,
|
|
|
|
GstMixerOptions *opts);
|
|
|
|
|
2009-05-10 15:25:58 +00:00
|
|
|
GstMixerType gst_mixer_get_mixer_type (GstMixer *mixer);
|
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed...
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
(gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
(gst_mixer_message_get_type),
(gst_mixer_message_parse_option_changed),
(gst_mixer_message_parse_options_list_changed):
* gst-libs/gst/interfaces/mixer.h: (GstMixerType),
(GST_MIXER_MESSAGE_OPTION_CHANGED),
(GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
(GST_MIXER_MESSAGE_MIXER_CHANGED):
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
2008-03-03 13:56:38 +00:00
|
|
|
|
2007-07-21 09:21:12 +00:00
|
|
|
GstMixerFlags gst_mixer_get_mixer_flags (GstMixer *mixer);
|
|
|
|
|
|
|
|
/* Functions for recognising and parsing GstMixerMessages on the bus */
|
|
|
|
GstMixerMessageType gst_mixer_message_get_type (GstMessage *message);
|
|
|
|
void gst_mixer_message_parse_mute_toggled (GstMessage *message,
|
|
|
|
GstMixerTrack **track,
|
|
|
|
gboolean *mute);
|
|
|
|
void gst_mixer_message_parse_record_toggled (GstMessage *message,
|
|
|
|
GstMixerTrack **track,
|
|
|
|
gboolean *record);
|
|
|
|
void gst_mixer_message_parse_volume_changed (GstMessage *message,
|
|
|
|
GstMixerTrack **track,
|
|
|
|
gint **volumes,
|
|
|
|
gint *num_channels);
|
|
|
|
void gst_mixer_message_parse_option_changed (GstMessage *message,
|
|
|
|
GstMixerOptions **options,
|
|
|
|
const gchar **value);
|
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed() and gst_mixer_message_parse_options_list_changed...
Original commit message from CVS:
* docs/libs/gst-plugins-base-libs-sections.txt:
* gst-libs/gst/interfaces/mixer.c: (gst_mixer_option_changed),
(gst_mixer_options_list_changed), (gst_mixer_mixer_changed),
(gst_mixer_message_get_type),
(gst_mixer_message_parse_option_changed),
(gst_mixer_message_parse_options_list_changed):
* gst-libs/gst/interfaces/mixer.h: (GstMixerType),
(GST_MIXER_MESSAGE_OPTION_CHANGED),
(GST_MIXER_MESSAGE_OPTIONS_LIST_CHANGED),
(GST_MIXER_MESSAGE_MIXER_CHANGED):
API: add gst_mixer_options_list_changed(), gst_mixer_mixer_changed()
and gst_mixer_message_parse_options_list_changed(). Fixes #519916.
2008-03-03 13:56:38 +00:00
|
|
|
void gst_mixer_message_parse_options_list_changed (GstMessage *message,
|
|
|
|
GstMixerOptions **options);
|
2007-07-21 09:21:12 +00:00
|
|
|
|
2003-09-13 01:20:04 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2003-09-13 01:20:04 +00:00
|
|
|
#endif /* __GST_MIXER_H__ */
|