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.

172 lines
6.3KB

  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 "avutil.h"
  21. /**
  22. * all in native-endian format
  23. */
  24. enum AVSampleFormat {
  25. AV_SAMPLE_FMT_NONE = -1,
  26. AV_SAMPLE_FMT_U8, ///< unsigned 8 bits
  27. AV_SAMPLE_FMT_S16, ///< signed 16 bits
  28. AV_SAMPLE_FMT_S32, ///< signed 32 bits
  29. AV_SAMPLE_FMT_FLT, ///< float
  30. AV_SAMPLE_FMT_DBL, ///< double
  31. AV_SAMPLE_FMT_U8P, ///< unsigned 8 bits, planar
  32. AV_SAMPLE_FMT_S16P, ///< signed 16 bits, planar
  33. AV_SAMPLE_FMT_S32P, ///< signed 32 bits, planar
  34. AV_SAMPLE_FMT_FLTP, ///< float, planar
  35. AV_SAMPLE_FMT_DBLP, ///< double, planar
  36. AV_SAMPLE_FMT_NB ///< Number of sample formats. DO NOT USE if linking dynamically
  37. };
  38. /**
  39. * Return the name of sample_fmt, or NULL if sample_fmt is not
  40. * recognized.
  41. */
  42. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt);
  43. /**
  44. * Return a sample format corresponding to name, or AV_SAMPLE_FMT_NONE
  45. * on error.
  46. */
  47. enum AVSampleFormat av_get_sample_fmt(const char *name);
  48. /**
  49. * Get the packed alternative form of the given sample format.
  50. *
  51. * If the passed sample_fmt is already in packed format, the format returned is
  52. * the same as the input.
  53. *
  54. * @return the packed alternative form of the given sample format or
  55. AV_SAMPLE_FMT_NONE on error.
  56. */
  57. enum AVSampleFormat av_get_packed_sample_fmt(enum AVSampleFormat sample_fmt);
  58. /**
  59. * Get the planar alternative form of the given sample format.
  60. *
  61. * If the passed sample_fmt is already in planar format, the format returned is
  62. * the same as the input.
  63. *
  64. * @return the planar alternative form of the given sample format or
  65. AV_SAMPLE_FMT_NONE on error.
  66. */
  67. enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt);
  68. /**
  69. * Generate a string corresponding to the sample format with
  70. * sample_fmt, or a header if sample_fmt is negative.
  71. *
  72. * @param buf the buffer where to write the string
  73. * @param buf_size the size of buf
  74. * @param sample_fmt the number of the sample format to print the
  75. * corresponding info string, or a negative value to print the
  76. * corresponding header.
  77. * @return the pointer to the filled buffer or NULL if sample_fmt is
  78. * unknown or in case of other errors
  79. */
  80. char *av_get_sample_fmt_string(char *buf, int buf_size, enum AVSampleFormat sample_fmt);
  81. #if FF_API_GET_BITS_PER_SAMPLE_FMT
  82. /**
  83. * @deprecated Use av_get_bytes_per_sample() instead.
  84. */
  85. attribute_deprecated
  86. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt);
  87. #endif
  88. /**
  89. * Return number of bytes per sample.
  90. *
  91. * @param sample_fmt the sample format
  92. * @return number of bytes per sample or zero if unknown for the given
  93. * sample format
  94. */
  95. int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt);
  96. /**
  97. * Check if the sample format is planar.
  98. *
  99. * @param sample_fmt the sample format to inspect
  100. * @return 1 if the sample format is planar, 0 if it is interleaved
  101. */
  102. int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt);
  103. /**
  104. * Get the required buffer size for the given audio parameters.
  105. *
  106. * @param[out] linesize calculated linesize, may be NULL
  107. * @param nb_channels the number of channels
  108. * @param nb_samples the number of samples in a single channel
  109. * @param sample_fmt the sample format
  110. * @param align buffer size alignment (0 = default, 1 = no alignment)
  111. * @return required buffer size, or negative error code on failure
  112. */
  113. int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples,
  114. enum AVSampleFormat sample_fmt, int align);
  115. /**
  116. * Fill channel data pointers and linesize for samples with sample
  117. * format sample_fmt.
  118. *
  119. * The pointers array is filled with the pointers to the samples data:
  120. * for planar, set the start point of each channel's data within the buffer,
  121. * for packed, set the start point of the entire buffer only.
  122. *
  123. * The linesize array is filled with the aligned size of each channel's data
  124. * buffer for planar layout, or the aligned size of the buffer for all channels
  125. * for packed layout.
  126. *
  127. * @param[out] audio_data array to be filled with the pointer for each channel
  128. * @param[out] linesize calculated linesize, may be NULL
  129. * @param buf the pointer to a buffer containing the samples
  130. * @param nb_channels the number of channels
  131. * @param nb_samples the number of samples in a single channel
  132. * @param sample_fmt the sample format
  133. * @param align buffer size alignment (0 = default, 1 = no alignment)
  134. * @return 0 on success or a negative error code on failure
  135. */
  136. int av_samples_fill_arrays(uint8_t **audio_data, int *linesize, uint8_t *buf,
  137. int nb_channels, int nb_samples,
  138. enum AVSampleFormat sample_fmt, int align);
  139. /**
  140. * Allocate a samples buffer for nb_samples samples, and fill data pointers and
  141. * linesize accordingly.
  142. * The allocated samples buffer can be freed by using av_freep(&audio_data[0])
  143. *
  144. * @param[out] audio_data array to be filled with the pointer for each channel
  145. * @param[out] linesize aligned size for audio buffer(s), may be NULL
  146. * @param nb_channels number of audio channels
  147. * @param nb_samples number of samples per channel
  148. * @param align buffer size alignment (0 = default, 1 = no alignment)
  149. * @return 0 on success or a negative error code on failure
  150. * @see av_samples_fill_arrays()
  151. */
  152. int av_samples_alloc(uint8_t **audio_data, int *linesize, int nb_channels,
  153. int nb_samples, enum AVSampleFormat sample_fmt, int align);
  154. #endif /* AVUTIL_SAMPLEFMT_H */