2001-12-22 23:27:17 +00:00
|
|
|
/* -*- c-basic-offset: 2 -*-
|
2005-08-22 09:35:57 +00:00
|
|
|
* vi:si:et:sw=2:sts=8:ts=8:expandtab
|
|
|
|
*
|
2001-12-22 23:27:17 +00:00
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
2010-02-17 18:18:29 +00:00
|
|
|
* Copyright (C) 2010 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2001-12-22 23:27:17 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-12-22 23:27:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_VOLUME_H__
|
|
|
|
#define __GST_VOLUME_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2005-08-23 18:19:10 +00:00
|
|
|
#include <gst/base/gstbasetransform.h>
|
2011-11-30 06:57:02 +00:00
|
|
|
#include <gst/audio/streamvolume.h>
|
2008-01-03 20:33:58 +00:00
|
|
|
#include <gst/audio/audio.h>
|
|
|
|
#include <gst/audio/gstaudiofilter.h>
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-05-09 21:37:17 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_VOLUME \
|
|
|
|
(gst_volume_get_type())
|
|
|
|
#define GST_VOLUME(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VOLUME,GstVolume))
|
|
|
|
#define GST_VOLUME_CLASS(klass) \
|
2006-06-01 19:19:51 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VOLUME,GstVolumeClass))
|
2001-12-22 23:27:17 +00:00
|
|
|
#define GST_IS_VOLUME(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VOLUME))
|
gst/adder/gstadder.c: Make it easier to copy&paste
Original commit message from CVS:
* gst/adder/gstadder.c: (gst_adder_get_type):
Make it easier to copy&paste
* gst/volume/Makefile.am:
* gst/volume/gstvolume.c: (volume_update_real_volume),
(gst_volume_set_volume), (gst_volume_set_mute),
(gst_volume_class_init), (volume_process_int16), (volume_set_caps),
(volume_transform_ip), (volume_update_mute),
(volume_update_volume):
* gst/volume/gstvolume.h:
Add own debug category, move duplicate code to helper function, fix
property texts, add more comments and prepare ffor liboil-goodness
* tests/check/Makefile.am:
* tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
add test for mute and passtrough case, be a bit more verbose to track
failure
* tests/check/generic/states.c: (GST_START_TEST):
catch elements that fail to instantiate
2006-05-28 19:42:27 +00:00
|
|
|
#define GST_IS_VOLUME_CLASS(klass) \
|
2001-12-22 23:27:17 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VOLUME))
|
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
typedef struct _GstVolume GstVolume;
|
|
|
|
typedef struct _GstVolumeClass GstVolumeClass;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2006-03-01 17:39:28 +00:00
|
|
|
/**
|
|
|
|
* GstVolume:
|
|
|
|
*
|
|
|
|
* Opaque data structure.
|
|
|
|
*/
|
2004-03-15 16:32:55 +00:00
|
|
|
struct _GstVolume {
|
2008-01-03 20:33:58 +00:00
|
|
|
GstAudioFilter element;
|
2005-05-09 21:37:17 +00:00
|
|
|
|
gst/volume/gstvolume.*: Extend float audio support (double) and some int->uint cleanups.
Original commit message from CVS:
* gst/volume/gstvolume.c: (volume_choose_func),
(volume_update_real_volume), (gst_volume_set_volume),
(gst_volume_init), (volume_process_double), (volume_process_float),
(volume_process_int16), (volume_process_int16_clamp),
(volume_set_caps), (volume_transform_ip), (volume_update_volume):
* gst/volume/gstvolume.h:
Extend float audio support (double) and some int->uint cleanups.
2007-02-21 13:08:51 +00:00
|
|
|
void (*process)(GstVolume*, gpointer, guint);
|
2010-02-17 18:18:29 +00:00
|
|
|
void (*process_controlled)(GstVolume*, gpointer, gdouble *, guint, guint);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
gboolean mute;
|
gst/volume/gstvolume.*: Cleanup volume, define and use default values.
Original commit message from CVS:
* gst/volume/gstvolume.c: (volume_choose_func),
(volume_update_volume), (gst_volume_set_volume),
(gst_volume_get_volume), (gst_volume_set_mute),
(gst_volume_class_init), (gst_volume_init),
(volume_process_double), (volume_process_float),
(volume_process_int32), (volume_process_int32_clamp),
(volume_process_int24), (volume_process_int24_clamp),
(volume_process_int16), (volume_process_int16_clamp),
(volume_process_int8), (volume_process_int8_clamp), (volume_setup),
(volume_transform_ip), (volume_set_property),
(volume_get_property):
* gst/volume/gstvolume.h:
Cleanup volume, define and use default values.
Recalculate new volume and mute setup before processing. Fixes #561789.
* tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
Add controller unit test. Patch by: Jonathan Matthew
Fix bogus test that messed with basetransform's internal state.
2008-11-24 12:03:11 +00:00
|
|
|
gfloat volume;
|
|
|
|
|
|
|
|
gboolean current_mute;
|
2017-04-11 08:16:33 +00:00
|
|
|
gdouble current_volume;
|
gst/volume/gstvolume.*: Cleanup volume, define and use default values.
Original commit message from CVS:
* gst/volume/gstvolume.c: (volume_choose_func),
(volume_update_volume), (gst_volume_set_volume),
(gst_volume_get_volume), (gst_volume_set_mute),
(gst_volume_class_init), (gst_volume_init),
(volume_process_double), (volume_process_float),
(volume_process_int32), (volume_process_int32_clamp),
(volume_process_int24), (volume_process_int24_clamp),
(volume_process_int16), (volume_process_int16_clamp),
(volume_process_int8), (volume_process_int8_clamp), (volume_setup),
(volume_transform_ip), (volume_set_property),
(volume_get_property):
* gst/volume/gstvolume.h:
Cleanup volume, define and use default values.
Recalculate new volume and mute setup before processing. Fixes #561789.
* tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
Add controller unit test. Patch by: Jonathan Matthew
Fix bogus test that messed with basetransform's internal state.
2008-11-24 12:03:11 +00:00
|
|
|
|
|
|
|
gint current_vol_i32;
|
|
|
|
gint current_vol_i24; /* the _i(nt) values get synchronized with the */
|
|
|
|
gint current_vol_i16; /* the _i(nt) values get synchronized with the */
|
|
|
|
gint current_vol_i8; /* the _i(nt) values get synchronized with the */
|
gst/adder/gstadder.c: Make it easier to copy&paste
Original commit message from CVS:
* gst/adder/gstadder.c: (gst_adder_get_type):
Make it easier to copy&paste
* gst/volume/Makefile.am:
* gst/volume/gstvolume.c: (volume_update_real_volume),
(gst_volume_set_volume), (gst_volume_set_mute),
(gst_volume_class_init), (volume_process_int16), (volume_set_caps),
(volume_transform_ip), (volume_update_mute),
(volume_update_volume):
* gst/volume/gstvolume.h:
Add own debug category, move duplicate code to helper function, fix
property texts, add more comments and prepare ffor liboil-goodness
* tests/check/Makefile.am:
* tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
add test for mute and passtrough case, be a bit more verbose to track
failure
* tests/check/generic/states.c: (GST_START_TEST):
catch elements that fail to instantiate
2006-05-28 19:42:27 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
GList *tracklist;
|
2008-11-05 19:18:25 +00:00
|
|
|
gboolean negotiated;
|
2010-02-17 18:18:29 +00:00
|
|
|
|
|
|
|
gboolean *mutes;
|
|
|
|
guint mutes_count;
|
|
|
|
gdouble *volumes;
|
|
|
|
guint volumes_count;
|
2004-03-15 16:32:55 +00:00
|
|
|
};
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
struct _GstVolumeClass {
|
2008-01-03 20:33:58 +00:00
|
|
|
GstAudioFilterClass parent_class;
|
2004-03-15 16:32:55 +00:00
|
|
|
};
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-08-22 09:35:57 +00:00
|
|
|
GType gst_volume_get_type (void);
|
2005-05-09 21:37:17 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-15 16:32:55 +00:00
|
|
|
#endif /* __GST_VOLUME_H__ */
|