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.

112 lines
4.0KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVCORE_SAMPLEFMT_H
  19. #define AVCORE_SAMPLEFMT_H
  20. #include "avcore.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_NB ///< Number of sample formats. DO NOT USE if dynamically linking to libavcore
  32. };
  33. /**
  34. * Return the name of sample_fmt, or NULL if sample_fmt is not
  35. * recognized.
  36. */
  37. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt);
  38. /**
  39. * Return a sample format corresponding to name, or AV_SAMPLE_FMT_NONE
  40. * on error.
  41. */
  42. enum AVSampleFormat av_get_sample_fmt(const char *name);
  43. /**
  44. * Generate a string corresponding to the sample format with
  45. * sample_fmt, or a header if sample_fmt is negative.
  46. *
  47. * @param buf the buffer where to write the string
  48. * @param buf_size the size of buf
  49. * @param sample_fmt the number of the sample format to print the
  50. * corresponding info string, or a negative value to print the
  51. * corresponding header.
  52. * @return the pointer to the filled buffer or NULL if sample_fmt is
  53. * unknown or in case of other errors
  54. */
  55. char *av_get_sample_fmt_string(char *buf, int buf_size, enum AVSampleFormat sample_fmt);
  56. /**
  57. * Return sample format bits per sample.
  58. *
  59. * @param sample_fmt the sample format
  60. * @return number of bits per sample or zero if unknown for the given
  61. * sample format
  62. */
  63. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt);
  64. /**
  65. * Fill channel data pointers and linesizes for samples with sample
  66. * format sample_fmt.
  67. *
  68. * The pointers array is filled with the pointers to the samples data:
  69. * data[c] points to the first sample of channel c.
  70. * data[c] + linesize[0] points to the second sample of channel c
  71. *
  72. * @param pointers array to be filled with the pointer for each plane, may be NULL
  73. * @param linesizes array to be filled with the linesize, may be NULL
  74. * @param buf the pointer to a buffer containing the samples
  75. * @param nb_samples the number of samples in a single channel
  76. * @param planar 1 if the samples layout is planar, 0 if it is packed
  77. * @param nb_channels the number of channels
  78. * @return the total size of the buffer, a negative
  79. * error code in case of failure
  80. */
  81. int av_samples_fill_arrays(uint8_t *pointers[8], int linesizes[8],
  82. uint8_t *buf, int nb_channels, int nb_samples,
  83. enum AVSampleFormat sample_fmt, int planar, int align);
  84. /**
  85. * Allocate a samples buffer for nb_samples samples, and
  86. * fill pointers and linesizes accordingly.
  87. * The allocated samples buffer has to be freed by using
  88. * av_freep(&pointers[0]).
  89. *
  90. * @param nb_samples number of samples per channel
  91. * @param planar 1 if the samples layout is planar, 0 if packed,
  92. * @param align the value to use for buffer size alignment
  93. * @return the size in bytes required for the samples buffer, a negative
  94. * error code in case of failure
  95. * @see av_samples_fill_arrays()
  96. */
  97. int av_samples_alloc(uint8_t *pointers[8], int linesizes[8],
  98. int nb_samples, int nb_channels,
  99. enum AVSampleFormat sample_fmt, int planar,
  100. int align);
  101. #endif /* AVCORE_SAMPLEFMT_H */