samplefmt.c 6.1 KB

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