streamvolume.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* GStreamer StreamVolume
  2. * Copyright (C) 2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef __GST_STREAM_VOLUME_H__
  20. #define __GST_STREAM_VOLUME_H__
  21. #include <gst/gst.h>
  22. G_BEGIN_DECLS
  23. #define GST_TYPE_STREAM_VOLUME \
  24. (gst_stream_volume_get_type ())
  25. #define GST_STREAM_VOLUME(obj) \
  26. (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_STREAM_VOLUME, GstStreamVolume))
  27. #define GST_IS_STREAM_VOLUME(obj) \
  28. (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_STREAM_VOLUME))
  29. #define GST_STREAM_VOLUME_GET_INTERFACE(inst) \
  30. (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_STREAM_VOLUME, GstStreamVolumeInterface))
  31. typedef struct _GstStreamVolume GstStreamVolume;
  32. typedef struct _GstStreamVolumeInterface GstStreamVolumeInterface;
  33. struct _GstStreamVolumeInterface {
  34. GTypeInterface iface;
  35. };
  36. /**
  37. * GstStreamVolumeFormat:
  38. * @GST_STREAM_VOLUME_FORMAT_LINEAR: Linear scale factor, 1.0 = 100%
  39. * @GST_STREAM_VOLUME_FORMAT_CUBIC: Cubic volume scale
  40. * @GST_STREAM_VOLUME_FORMAT_DB: Logarithmic volume scale (dB, amplitude not power)
  41. *
  42. * Different representations of a stream volume. gst_stream_volume_convert_volume()
  43. * allows to convert between the different representations.
  44. *
  45. * Formulas to convert from a linear to a cubic or dB volume are
  46. * cbrt(val) and 20 * log10 (val).
  47. */
  48. typedef enum {
  49. GST_STREAM_VOLUME_FORMAT_LINEAR = 0,
  50. GST_STREAM_VOLUME_FORMAT_CUBIC,
  51. GST_STREAM_VOLUME_FORMAT_DB
  52. } GstStreamVolumeFormat;
  53. GType gst_stream_volume_get_type (void);
  54. void gst_stream_volume_set_volume (GstStreamVolume *volume,
  55. GstStreamVolumeFormat format,
  56. gdouble val);
  57. gdouble gst_stream_volume_get_volume (GstStreamVolume *volume,
  58. GstStreamVolumeFormat format);
  59. void gst_stream_volume_set_mute (GstStreamVolume *volume,
  60. gboolean mute);
  61. gboolean gst_stream_volume_get_mute (GstStreamVolume *volume);
  62. gdouble gst_stream_volume_convert_volume (GstStreamVolumeFormat from,
  63. GstStreamVolumeFormat to,
  64. gdouble val) G_GNUC_CONST;
  65. G_END_DECLS
  66. #endif /* __GST_STREAM_VOLUME_H__ */