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.

160 lines
5.2KB

  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. #include "samplefmt.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. typedef struct SampleFmtInfo {
  23. const char *name;
  24. int bits;
  25. int planar;
  26. } SampleFmtInfo;
  27. /** this table gives more information about formats */
  28. static const SampleFmtInfo sample_fmt_info[AV_SAMPLE_FMT_NB] = {
  29. [AV_SAMPLE_FMT_U8] = { .name = "u8", .bits = 8, .planar = 0 },
  30. [AV_SAMPLE_FMT_S16] = { .name = "s16", .bits = 16, .planar = 0 },
  31. [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32, .planar = 0 },
  32. [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32, .planar = 0 },
  33. [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64, .planar = 0 },
  34. [AV_SAMPLE_FMT_U8P] = { .name = "u8p", .bits = 8, .planar = 1 },
  35. [AV_SAMPLE_FMT_S16P] = { .name = "s16p", .bits = 16, .planar = 1 },
  36. [AV_SAMPLE_FMT_S32P] = { .name = "s32p", .bits = 32, .planar = 1 },
  37. [AV_SAMPLE_FMT_FLTP] = { .name = "fltp", .bits = 32, .planar = 1 },
  38. [AV_SAMPLE_FMT_DBLP] = { .name = "dblp", .bits = 64, .planar = 1 },
  39. };
  40. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
  41. {
  42. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  43. return NULL;
  44. return sample_fmt_info[sample_fmt].name;
  45. }
  46. enum AVSampleFormat av_get_sample_fmt(const char *name)
  47. {
  48. int i;
  49. for (i = 0; i < AV_SAMPLE_FMT_NB; i++)
  50. if (!strcmp(sample_fmt_info[i].name, name))
  51. return i;
  52. return AV_SAMPLE_FMT_NONE;
  53. }
  54. char *av_get_sample_fmt_string (char *buf, int buf_size, enum AVSampleFormat sample_fmt)
  55. {
  56. /* print header */
  57. if (sample_fmt < 0)
  58. snprintf(buf, buf_size, "name " " depth");
  59. else if (sample_fmt < AV_SAMPLE_FMT_NB) {
  60. SampleFmtInfo info = sample_fmt_info[sample_fmt];
  61. snprintf (buf, buf_size, "%-6s" " %2d ", info.name, info.bits);
  62. }
  63. return buf;
  64. }
  65. int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
  66. {
  67. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  68. 0 : sample_fmt_info[sample_fmt].bits >> 3;
  69. }
  70. #if FF_API_GET_BITS_PER_SAMPLE_FMT
  71. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt)
  72. {
  73. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  74. 0 : sample_fmt_info[sample_fmt].bits;
  75. }
  76. #endif
  77. int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
  78. {
  79. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  80. return 0;
  81. return sample_fmt_info[sample_fmt].planar;
  82. }
  83. int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples,
  84. enum AVSampleFormat sample_fmt, int align)
  85. {
  86. int line_size;
  87. int sample_size = av_get_bytes_per_sample(sample_fmt);
  88. int planar = av_sample_fmt_is_planar(sample_fmt);
  89. /* validate parameter ranges */
  90. if (!sample_size || nb_samples <= 0 || nb_channels <= 0)
  91. return AVERROR(EINVAL);
  92. /* check for integer overflow */
  93. if (nb_channels > INT_MAX / align ||
  94. (int64_t)nb_channels * nb_samples > (INT_MAX - (align * nb_channels)) / sample_size)
  95. return AVERROR(EINVAL);
  96. line_size = planar ? FFALIGN(nb_samples * sample_size, align) :
  97. FFALIGN(nb_samples * sample_size * nb_channels, align);
  98. if (linesize)
  99. *linesize = line_size;
  100. return planar ? line_size * nb_channels : line_size;
  101. }
  102. int av_samples_fill_arrays(uint8_t **audio_data, int *linesize,
  103. uint8_t *buf, int nb_channels, int nb_samples,
  104. enum AVSampleFormat sample_fmt, int align)
  105. {
  106. int ch, planar, buf_size;
  107. planar = av_sample_fmt_is_planar(sample_fmt);
  108. buf_size = av_samples_get_buffer_size(linesize, nb_channels, nb_samples,
  109. sample_fmt, align);
  110. if (buf_size < 0)
  111. return buf_size;
  112. audio_data[0] = buf;
  113. for (ch = 1; planar && ch < nb_channels; ch++)
  114. audio_data[ch] = audio_data[ch-1] + *linesize;
  115. return 0;
  116. }
  117. int av_samples_alloc(uint8_t **audio_data, int *linesize, int nb_channels,
  118. int nb_samples, enum AVSampleFormat sample_fmt, int align)
  119. {
  120. uint8_t *buf;
  121. int size = av_samples_get_buffer_size(NULL, nb_channels, nb_samples,
  122. sample_fmt, align);
  123. if (size < 0)
  124. return size;
  125. buf = av_mallocz(size);
  126. if (!buf)
  127. return AVERROR(ENOMEM);
  128. size = av_samples_fill_arrays(audio_data, linesize, buf, nb_channels,
  129. nb_samples, sample_fmt, align);
  130. if (size < 0) {
  131. av_free(buf);
  132. return size;
  133. }
  134. return 0;
  135. }