You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

221 lines
8.4KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav 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. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVUTIL_SAMPLEFMT_H
  19. #define AVUTIL_SAMPLEFMT_H
  20. #include <stdint.h>
  21. #include "avutil.h"
  22. #include "attributes.h"
  23. /**
  24. * Audio Sample Formats
  25. *
  26. * @par
  27. * The data described by the sample format is always in native-endian order.
  28. * Sample values can be expressed by native C types, hence the lack of a signed
  29. * 24-bit sample format even though it is a common raw audio data format.
  30. *
  31. * @par
  32. * The floating-point formats are based on full volume being in the range
  33. * [-1.0, 1.0]. Any values outside this range are beyond full volume level.
  34. *
  35. * @par
  36. * The data layout as used in av_samples_fill_arrays() and elsewhere in Libav
  37. * (such as AVFrame in libavcodec) is as follows:
  38. *
  39. * For planar sample formats, each audio channel is in a separate data plane,
  40. * and linesize is the buffer size, in bytes, for a single plane. All data
  41. * planes must be the same size. For packed sample formats, only the first data
  42. * plane is used, and samples for each channel are interleaved. In this case,
  43. * linesize is the buffer size, in bytes, for the 1 plane.
  44. */
  45. enum AVSampleFormat {
  46. AV_SAMPLE_FMT_NONE = -1,
  47. AV_SAMPLE_FMT_U8, ///< unsigned 8 bits
  48. AV_SAMPLE_FMT_S16, ///< signed 16 bits
  49. AV_SAMPLE_FMT_S32, ///< signed 32 bits
  50. AV_SAMPLE_FMT_FLT, ///< float
  51. AV_SAMPLE_FMT_DBL, ///< double
  52. AV_SAMPLE_FMT_U8P, ///< unsigned 8 bits, planar
  53. AV_SAMPLE_FMT_S16P, ///< signed 16 bits, planar
  54. AV_SAMPLE_FMT_S32P, ///< signed 32 bits, planar
  55. AV_SAMPLE_FMT_FLTP, ///< float, planar
  56. AV_SAMPLE_FMT_DBLP, ///< double, planar
  57. AV_SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if linking dynamically
  58. };
  59. /**
  60. * Return the name of sample_fmt, or NULL if sample_fmt is not
  61. * recognized.
  62. */
  63. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt);
  64. /**
  65. * Return a sample format corresponding to name, or AV_SAMPLE_FMT_NONE
  66. * on error.
  67. */
  68. enum AVSampleFormat av_get_sample_fmt(const char *name);
  69. /**
  70. * Get the packed alternative form of the given sample format.
  71. *
  72. * If the passed sample_fmt is already in packed format, the format returned is
  73. * the same as the input.
  74. *
  75. * @return the packed alternative form of the given sample format or
  76. AV_SAMPLE_FMT_NONE on error.
  77. */
  78. enum AVSampleFormat av_get_packed_sample_fmt(enum AVSampleFormat sample_fmt);
  79. /**
  80. * Get the planar alternative form of the given sample format.
  81. *
  82. * If the passed sample_fmt is already in planar format, the format returned is
  83. * the same as the input.
  84. *
  85. * @return the planar alternative form of the given sample format or
  86. AV_SAMPLE_FMT_NONE on error.
  87. */
  88. enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt);
  89. /**
  90. * Generate a string corresponding to the sample format with
  91. * sample_fmt, or a header if sample_fmt is negative.
  92. *
  93. * @param buf the buffer where to write the string
  94. * @param buf_size the size of buf
  95. * @param sample_fmt the number of the sample format to print the
  96. * corresponding info string, or a negative value to print the
  97. * corresponding header.
  98. * @return the pointer to the filled buffer or NULL if sample_fmt is
  99. * unknown or in case of other errors
  100. */
  101. char *av_get_sample_fmt_string(char *buf, int buf_size, enum AVSampleFormat sample_fmt);
  102. /**
  103. * Return number of bytes per sample.
  104. *
  105. * @param sample_fmt the sample format
  106. * @return number of bytes per sample or zero if unknown for the given
  107. * sample format
  108. */
  109. int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt);
  110. /**
  111. * Check if the sample format is planar.
  112. *
  113. * @param sample_fmt the sample format to inspect
  114. * @return 1 if the sample format is planar, 0 if it is interleaved
  115. */
  116. int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt);
  117. /**
  118. * Get the required buffer size for the given audio parameters.
  119. *
  120. * @param[out] linesize calculated linesize, may be NULL
  121. * @param nb_channels the number of channels
  122. * @param nb_samples the number of samples in a single channel
  123. * @param sample_fmt the sample format
  124. * @param align buffer size alignment (0 = default, 1 = no alignment)
  125. * @return required buffer size, or negative error code on failure
  126. */
  127. int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples,
  128. enum AVSampleFormat sample_fmt, int align);
  129. /**
  130. * Fill channel data pointers and linesize for samples with sample
  131. * format sample_fmt.
  132. *
  133. * The pointers array is filled with the pointers to the samples data:
  134. * for planar, set the start point of each channel's data within the buffer,
  135. * for packed, set the start point of the entire buffer only.
  136. *
  137. * The linesize array is filled with the aligned size of each channel's data
  138. * buffer for planar layout, or the aligned size of the buffer for all channels
  139. * for packed layout.
  140. *
  141. * @see enum AVSampleFormat
  142. * The documentation for AVSampleFormat describes the data layout.
  143. *
  144. * @param[out] audio_data array to be filled with the pointer for each channel
  145. * @param[out] linesize calculated linesize, may be NULL
  146. * @param buf the pointer to a buffer containing the samples
  147. * @param nb_channels the number of channels
  148. * @param nb_samples the number of samples in a single channel
  149. * @param sample_fmt the sample format
  150. * @param align buffer size alignment (0 = default, 1 = no alignment)
  151. * @return 0 on success or a negative error code on failure
  152. */
  153. int av_samples_fill_arrays(uint8_t **audio_data, int *linesize,
  154. const uint8_t *buf,
  155. int nb_channels, int nb_samples,
  156. enum AVSampleFormat sample_fmt, int align);
  157. /**
  158. * Allocate a samples buffer for nb_samples samples, and fill data pointers and
  159. * linesize accordingly.
  160. * The allocated samples buffer can be freed by using av_freep(&audio_data[0])
  161. * Allocated data will be initialized to silence.
  162. *
  163. * @see enum AVSampleFormat
  164. * The documentation for AVSampleFormat describes the data layout.
  165. *
  166. * @param[out] audio_data array to be filled with the pointer for each channel
  167. * @param[out] linesize aligned size for audio buffer(s), may be NULL
  168. * @param nb_channels number of audio channels
  169. * @param nb_samples number of samples per channel
  170. * @param align buffer size alignment (0 = default, 1 = no alignment)
  171. * @return 0 on success or a negative error code on failure
  172. * @see av_samples_fill_arrays()
  173. */
  174. int av_samples_alloc(uint8_t **audio_data, int *linesize, int nb_channels,
  175. int nb_samples, enum AVSampleFormat sample_fmt, int align);
  176. /**
  177. * Copy samples from src to dst.
  178. *
  179. * @param dst destination array of pointers to data planes
  180. * @param src source array of pointers to data planes
  181. * @param dst_offset offset in samples at which the data will be written to dst
  182. * @param src_offset offset in samples at which the data will be read from src
  183. * @param nb_samples number of samples to be copied
  184. * @param nb_channels number of audio channels
  185. * @param sample_fmt audio sample format
  186. */
  187. int av_samples_copy(uint8_t **dst, uint8_t * const *src, int dst_offset,
  188. int src_offset, int nb_samples, int nb_channels,
  189. enum AVSampleFormat sample_fmt);
  190. /**
  191. * Fill an audio buffer with silence.
  192. *
  193. * @param audio_data array of pointers to data planes
  194. * @param offset offset in samples at which to start filling
  195. * @param nb_samples number of samples to fill
  196. * @param nb_channels number of audio channels
  197. * @param sample_fmt audio sample format
  198. */
  199. int av_samples_set_silence(uint8_t **audio_data, int offset, int nb_samples,
  200. int nb_channels, enum AVSampleFormat sample_fmt);
  201. #endif /* AVUTIL_SAMPLEFMT_H */