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.

252 lines
8.4KB

  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 "common.h"
  19. #include "samplefmt.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. typedef struct SampleFmtInfo {
  24. char name[8];
  25. int bits;
  26. int planar;
  27. enum AVSampleFormat altform; ///< planar<->packed alternative form
  28. } SampleFmtInfo;
  29. /** this table gives more information about formats */
  30. static const SampleFmtInfo sample_fmt_info[AV_SAMPLE_FMT_NB] = {
  31. [AV_SAMPLE_FMT_U8] = { .name = "u8", .bits = 8, .planar = 0, .altform = AV_SAMPLE_FMT_U8P },
  32. [AV_SAMPLE_FMT_S16] = { .name = "s16", .bits = 16, .planar = 0, .altform = AV_SAMPLE_FMT_S16P },
  33. [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_S32P },
  34. [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_FLTP },
  35. [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64, .planar = 0, .altform = AV_SAMPLE_FMT_DBLP },
  36. [AV_SAMPLE_FMT_U8P] = { .name = "u8p", .bits = 8, .planar = 1, .altform = AV_SAMPLE_FMT_U8 },
  37. [AV_SAMPLE_FMT_S16P] = { .name = "s16p", .bits = 16, .planar = 1, .altform = AV_SAMPLE_FMT_S16 },
  38. [AV_SAMPLE_FMT_S32P] = { .name = "s32p", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_S32 },
  39. [AV_SAMPLE_FMT_FLTP] = { .name = "fltp", .bits = 32, .planar = 1, .altform = AV_SAMPLE_FMT_FLT },
  40. [AV_SAMPLE_FMT_DBLP] = { .name = "dblp", .bits = 64, .planar = 1, .altform = AV_SAMPLE_FMT_DBL },
  41. };
  42. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
  43. {
  44. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  45. return NULL;
  46. return sample_fmt_info[sample_fmt].name;
  47. }
  48. enum AVSampleFormat av_get_sample_fmt(const char *name)
  49. {
  50. int i;
  51. for (i = 0; i < AV_SAMPLE_FMT_NB; i++)
  52. if (!strcmp(sample_fmt_info[i].name, name))
  53. return i;
  54. return AV_SAMPLE_FMT_NONE;
  55. }
  56. enum AVSampleFormat av_get_alt_sample_fmt(enum AVSampleFormat sample_fmt, int planar)
  57. {
  58. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  59. return AV_SAMPLE_FMT_NONE;
  60. if (sample_fmt_info[sample_fmt].planar == planar)
  61. return sample_fmt;
  62. return sample_fmt_info[sample_fmt].altform;
  63. }
  64. enum AVSampleFormat av_get_packed_sample_fmt(enum AVSampleFormat sample_fmt)
  65. {
  66. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  67. return AV_SAMPLE_FMT_NONE;
  68. if (sample_fmt_info[sample_fmt].planar)
  69. return sample_fmt_info[sample_fmt].altform;
  70. return sample_fmt;
  71. }
  72. enum AVSampleFormat av_get_planar_sample_fmt(enum AVSampleFormat sample_fmt)
  73. {
  74. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  75. return AV_SAMPLE_FMT_NONE;
  76. if (sample_fmt_info[sample_fmt].planar)
  77. return sample_fmt;
  78. return sample_fmt_info[sample_fmt].altform;
  79. }
  80. char *av_get_sample_fmt_string (char *buf, int buf_size, enum AVSampleFormat sample_fmt)
  81. {
  82. /* print header */
  83. if (sample_fmt < 0)
  84. snprintf(buf, buf_size, "name " " depth");
  85. else if (sample_fmt < AV_SAMPLE_FMT_NB) {
  86. SampleFmtInfo info = sample_fmt_info[sample_fmt];
  87. snprintf (buf, buf_size, "%-6s" " %2d ", info.name, info.bits);
  88. }
  89. return buf;
  90. }
  91. int av_get_bytes_per_sample(enum AVSampleFormat sample_fmt)
  92. {
  93. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  94. 0 : sample_fmt_info[sample_fmt].bits >> 3;
  95. }
  96. #if FF_API_GET_BITS_PER_SAMPLE_FMT
  97. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt)
  98. {
  99. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  100. 0 : sample_fmt_info[sample_fmt].bits;
  101. }
  102. #endif
  103. int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
  104. {
  105. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  106. return 0;
  107. return sample_fmt_info[sample_fmt].planar;
  108. }
  109. int av_samples_get_buffer_size(int *linesize, int nb_channels, int nb_samples,
  110. enum AVSampleFormat sample_fmt, int align)
  111. {
  112. int line_size;
  113. int sample_size = av_get_bytes_per_sample(sample_fmt);
  114. int planar = av_sample_fmt_is_planar(sample_fmt);
  115. /* validate parameter ranges */
  116. if (!sample_size || nb_samples <= 0 || nb_channels <= 0)
  117. return AVERROR(EINVAL);
  118. /* auto-select alignment if not specified */
  119. if (!align) {
  120. align = 1;
  121. nb_samples = FFALIGN(nb_samples, 32);
  122. }
  123. /* check for integer overflow */
  124. if (nb_channels > INT_MAX / align ||
  125. (int64_t)nb_channels * nb_samples > (INT_MAX - (align * nb_channels)) / sample_size)
  126. return AVERROR(EINVAL);
  127. line_size = planar ? FFALIGN(nb_samples * sample_size, align) :
  128. FFALIGN(nb_samples * sample_size * nb_channels, align);
  129. if (linesize)
  130. *linesize = line_size;
  131. return planar ? line_size * nb_channels : line_size;
  132. }
  133. int av_samples_fill_arrays(uint8_t **audio_data, int *linesize,
  134. const uint8_t *buf, int nb_channels, int nb_samples,
  135. enum AVSampleFormat sample_fmt, int align)
  136. {
  137. int ch, planar, buf_size, line_size;
  138. planar = av_sample_fmt_is_planar(sample_fmt);
  139. buf_size = av_samples_get_buffer_size(&line_size, nb_channels, nb_samples,
  140. sample_fmt, align);
  141. if (buf_size < 0)
  142. return buf_size;
  143. audio_data[0] = (uint8_t *)buf;
  144. for (ch = 1; planar && ch < nb_channels; ch++)
  145. audio_data[ch] = audio_data[ch-1] + line_size;
  146. if (linesize)
  147. *linesize = line_size;
  148. #if FF_API_SAMPLES_UTILS_RETURN_ZERO
  149. return 0;
  150. #else
  151. return buf_size;
  152. #endif
  153. }
  154. int av_samples_alloc(uint8_t **audio_data, int *linesize, int nb_channels,
  155. int nb_samples, enum AVSampleFormat sample_fmt, int align)
  156. {
  157. uint8_t *buf;
  158. int size = av_samples_get_buffer_size(NULL, nb_channels, nb_samples,
  159. sample_fmt, align);
  160. if (size < 0)
  161. return size;
  162. buf = av_malloc(size);
  163. if (!buf)
  164. return AVERROR(ENOMEM);
  165. size = av_samples_fill_arrays(audio_data, linesize, buf, nb_channels,
  166. nb_samples, sample_fmt, align);
  167. if (size < 0) {
  168. av_free(buf);
  169. return size;
  170. }
  171. av_samples_set_silence(audio_data, 0, nb_samples, nb_channels, sample_fmt);
  172. #if FF_API_SAMPLES_UTILS_RETURN_ZERO
  173. return 0;
  174. #else
  175. return size;
  176. #endif
  177. }
  178. int av_samples_copy(uint8_t **dst, uint8_t * const *src, int dst_offset,
  179. int src_offset, int nb_samples, int nb_channels,
  180. enum AVSampleFormat sample_fmt)
  181. {
  182. int planar = av_sample_fmt_is_planar(sample_fmt);
  183. int planes = planar ? nb_channels : 1;
  184. int block_align = av_get_bytes_per_sample(sample_fmt) * (planar ? 1 : nb_channels);
  185. int data_size = nb_samples * block_align;
  186. int i;
  187. dst_offset *= block_align;
  188. src_offset *= block_align;
  189. if((dst[0] < src[0] ? src[0] - dst[0] : dst[0] - src[0]) >= data_size) {
  190. for (i = 0; i < planes; i++)
  191. memcpy(dst[i] + dst_offset, src[i] + src_offset, data_size);
  192. } else {
  193. for (i = 0; i < planes; i++)
  194. memmove(dst[i] + dst_offset, src[i] + src_offset, data_size);
  195. }
  196. return 0;
  197. }
  198. int av_samples_set_silence(uint8_t **audio_data, int offset, int nb_samples,
  199. int nb_channels, enum AVSampleFormat sample_fmt)
  200. {
  201. int planar = av_sample_fmt_is_planar(sample_fmt);
  202. int planes = planar ? nb_channels : 1;
  203. int block_align = av_get_bytes_per_sample(sample_fmt) * (planar ? 1 : nb_channels);
  204. int data_size = nb_samples * block_align;
  205. int fill_char = (sample_fmt == AV_SAMPLE_FMT_U8 ||
  206. sample_fmt == AV_SAMPLE_FMT_U8P) ? 0x80 : 0x00;
  207. int i;
  208. offset *= block_align;
  209. for (i = 0; i < planes; i++)
  210. memset(audio_data[i] + offset, fill_char, data_size);
  211. return 0;
  212. }