audio-channels.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* GStreamer
  2. * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
  3. * Library <2001> Thomas Vander Stichele <thomas@apestaart.org>
  4. * <2011> Wim Taymans <wim.taymans@gmail.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  19. * Boston, MA 02110-1301, USA.
  20. */
  21. #ifndef __GST_AUDIO_AUDIO_H__
  22. #include <gst/audio/audio.h>
  23. #endif
  24. #ifndef __GST_AUDIO_CHANNELS_H__
  25. #define __GST_AUDIO_CHANNELS_H__
  26. G_BEGIN_DECLS
  27. /**
  28. * GstAudioChannelPosition:
  29. * @GST_AUDIO_CHANNEL_POSITION_MONO: Mono without direction;
  30. * can only be used with 1 channel
  31. * @GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT: Front left
  32. * @GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT: Front right
  33. * @GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER: Front center
  34. * @GST_AUDIO_CHANNEL_POSITION_LFE1: Low-frequency effects 1 (subwoofer)
  35. * @GST_AUDIO_CHANNEL_POSITION_REAR_LEFT: Rear left
  36. * @GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT: Rear right
  37. * @GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER: Front left of center
  38. * @GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER: Front right of center
  39. * @GST_AUDIO_CHANNEL_POSITION_REAR_CENTER: Rear center
  40. * @GST_AUDIO_CHANNEL_POSITION_LFE2: Low-frequency effects 2 (subwoofer)
  41. * @GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT: Side left
  42. * @GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT: Side right
  43. * @GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_LEFT: Top front left
  44. * @GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_RIGHT: Top front right
  45. * @GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_CENTER: Top front center
  46. * @GST_AUDIO_CHANNEL_POSITION_TOP_CENTER: Top center
  47. * @GST_AUDIO_CHANNEL_POSITION_TOP_REAR_LEFT: Top rear left
  48. * @GST_AUDIO_CHANNEL_POSITION_TOP_REAR_RIGHT: Top rear right
  49. * @GST_AUDIO_CHANNEL_POSITION_TOP_SIDE_LEFT: Top side right
  50. * @GST_AUDIO_CHANNEL_POSITION_TOP_SIDE_RIGHT: Top rear right
  51. * @GST_AUDIO_CHANNEL_POSITION_TOP_REAR_CENTER: Top rear center
  52. * @GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_CENTER: Bottom front center
  53. * @GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_LEFT: Bottom front left
  54. * @GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_RIGHT: Bottom front right
  55. * @GST_AUDIO_CHANNEL_POSITION_WIDE_LEFT: Wide left (between front left and side left)
  56. * @GST_AUDIO_CHANNEL_POSITION_WIDE_RIGHT: Wide right (between front right and side right)
  57. * @GST_AUDIO_CHANNEL_POSITION_SURROUND_LEFT: Surround left (between rear left and side left)
  58. * @GST_AUDIO_CHANNEL_POSITION_SURROUND_RIGHT: Surround right (between rear right and side right)
  59. * @GST_AUDIO_CHANNEL_POSITION_NONE: used for position-less channels, e.g.
  60. * from a sound card that records 1024 channels; mutually exclusive with
  61. * any other channel position
  62. * @GST_AUDIO_CHANNEL_POSITION_INVALID: invalid position
  63. *
  64. * Audio channel positions.
  65. *
  66. * These are the channels defined in SMPTE 2036-2-2008
  67. * Table 1 for 22.2 audio systems with the Surround and Wide channels from
  68. * DTS Coherent Acoustics (v.1.3.1) and 10.2 and 7.1 layouts. In the caps the
  69. * actual channel layout is expressed with a channel count and a channel mask,
  70. * which describes the existing channels. The positions in the bit mask correspond
  71. * to the enum values.
  72. * For negotiation it is allowed to have more bits set in the channel mask than
  73. * the number of channels to specify the allowed channel positions but this is
  74. * not allowed in negotiated caps. It is not allowed in any situation other
  75. * than the one mentioned below to have less bits set in the channel mask than
  76. * the number of channels.
  77. *
  78. * @GST_AUDIO_CHANNEL_POSITION_MONO can only be used with a single mono channel that
  79. * has no direction information and would be mixed into all directional channels.
  80. * This is expressed in caps by having a single channel and no channel mask.
  81. *
  82. * @GST_AUDIO_CHANNEL_POSITION_NONE can only be used if all channels have this position.
  83. * This is expressed in caps by having a channel mask with no bits set.
  84. *
  85. * As another special case it is allowed to have two channels without a channel mask.
  86. * This implicitely means that this is a stereo stream with a front left and front right
  87. * channel.
  88. */
  89. typedef enum {
  90. /* These get negative indices to allow to use
  91. * the enum values of the normal cases for the
  92. * bit-mask position */
  93. GST_AUDIO_CHANNEL_POSITION_NONE = -3,
  94. GST_AUDIO_CHANNEL_POSITION_MONO = -2,
  95. GST_AUDIO_CHANNEL_POSITION_INVALID = -1,
  96. /* Normal cases */
  97. GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT = 0,
  98. GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
  99. GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
  100. GST_AUDIO_CHANNEL_POSITION_LFE1,
  101. GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
  102. GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT,
  103. GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER,
  104. GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER,
  105. GST_AUDIO_CHANNEL_POSITION_REAR_CENTER,
  106. GST_AUDIO_CHANNEL_POSITION_LFE2,
  107. GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT,
  108. GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT,
  109. GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_LEFT,
  110. GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_RIGHT,
  111. GST_AUDIO_CHANNEL_POSITION_TOP_FRONT_CENTER,
  112. GST_AUDIO_CHANNEL_POSITION_TOP_CENTER,
  113. GST_AUDIO_CHANNEL_POSITION_TOP_REAR_LEFT,
  114. GST_AUDIO_CHANNEL_POSITION_TOP_REAR_RIGHT,
  115. GST_AUDIO_CHANNEL_POSITION_TOP_SIDE_LEFT,
  116. GST_AUDIO_CHANNEL_POSITION_TOP_SIDE_RIGHT,
  117. GST_AUDIO_CHANNEL_POSITION_TOP_REAR_CENTER,
  118. GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_CENTER,
  119. GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_LEFT,
  120. GST_AUDIO_CHANNEL_POSITION_BOTTOM_FRONT_RIGHT,
  121. GST_AUDIO_CHANNEL_POSITION_WIDE_LEFT,
  122. GST_AUDIO_CHANNEL_POSITION_WIDE_RIGHT,
  123. GST_AUDIO_CHANNEL_POSITION_SURROUND_LEFT,
  124. GST_AUDIO_CHANNEL_POSITION_SURROUND_RIGHT
  125. } GstAudioChannelPosition;
  126. #define GST_AUDIO_CHANNEL_POSITION_MASK(pos) (G_GUINT64_CONSTANT(1)<< GST_AUDIO_CHANNEL_POSITION_ ## pos)
  127. gboolean gst_audio_buffer_reorder_channels (GstBuffer * buffer,
  128. GstAudioFormat format,
  129. gint channels,
  130. const GstAudioChannelPosition * from,
  131. const GstAudioChannelPosition * to);
  132. gboolean gst_audio_reorder_channels (gpointer data, gsize size,
  133. GstAudioFormat format,
  134. gint channels,
  135. const GstAudioChannelPosition * from,
  136. const GstAudioChannelPosition * to);
  137. gboolean gst_audio_channel_positions_to_valid_order (GstAudioChannelPosition *position,
  138. gint channels);
  139. gboolean gst_audio_check_valid_channel_positions (const GstAudioChannelPosition *position,
  140. gint channels, gboolean force_order);
  141. gboolean gst_audio_channel_positions_to_mask (const GstAudioChannelPosition *position,
  142. gint channels, gboolean force_order,
  143. guint64 *channel_mask);
  144. gboolean gst_audio_channel_positions_from_mask (gint channels, guint64 channel_mask,
  145. GstAudioChannelPosition * position);
  146. gboolean gst_audio_get_channel_reorder_map (gint channels,
  147. const GstAudioChannelPosition * from,
  148. const GstAudioChannelPosition * to,
  149. gint *reorder_map);
  150. guint64 gst_audio_channel_get_fallback_mask (gint channels);
  151. G_END_DECLS
  152. #endif /* __GST_AUDIO_CHANNELS_H__ */