samplefmt.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. const char *name;
  24. int bits;
  25. } SampleFmtInfo;
  26. /** this table gives more information about formats */
  27. static const SampleFmtInfo sample_fmt_info[AV_SAMPLE_FMT_NB] = {
  28. [AV_SAMPLE_FMT_U8] = { .name = "u8", .bits = 8 },
  29. [AV_SAMPLE_FMT_S16] = { .name = "s16", .bits = 16 },
  30. [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32 },
  31. [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32 },
  32. [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64 },
  33. };
  34. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
  35. {
  36. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  37. return NULL;
  38. return sample_fmt_info[sample_fmt].name;
  39. }
  40. enum AVSampleFormat av_get_sample_fmt(const char *name)
  41. {
  42. int i;
  43. for (i = 0; i < AV_SAMPLE_FMT_NB; i++)
  44. if (!strcmp(sample_fmt_info[i].name, name))
  45. return i;
  46. return AV_SAMPLE_FMT_NONE;
  47. }
  48. char *av_get_sample_fmt_string (char *buf, int buf_size, enum AVSampleFormat sample_fmt)
  49. {
  50. /* print header */
  51. if (sample_fmt < 0)
  52. snprintf(buf, buf_size, "name " " depth");
  53. else if (sample_fmt < AV_SAMPLE_FMT_NB) {
  54. SampleFmtInfo info = sample_fmt_info[sample_fmt];
  55. snprintf (buf, buf_size, "%-6s" " %2d ", info.name, info.bits);
  56. }
  57. return buf;
  58. }
  59. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt)
  60. {
  61. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  62. 0 : sample_fmt_info[sample_fmt].bits;
  63. }
  64. int av_samples_fill_arrays(uint8_t *pointers[8], int linesizes[8],
  65. uint8_t *buf, int nb_channels, int nb_samples,
  66. enum AVSampleFormat sample_fmt, int planar, int align)
  67. {
  68. int i, linesize;
  69. int sample_size = av_get_bits_per_sample_fmt(sample_fmt) >> 3;
  70. if (nb_channels * (uint64_t)nb_samples * sample_size >= INT_MAX - align*(uint64_t)nb_channels)
  71. return AVERROR(EINVAL);
  72. linesize = planar ? FFALIGN(nb_samples*sample_size, align) :
  73. FFALIGN(nb_samples*sample_size*nb_channels, align);
  74. if (pointers) {
  75. pointers[0] = buf;
  76. for (i = 1; planar && i < nb_channels; i++) {
  77. pointers[i] = pointers[i-1] + linesize;
  78. }
  79. memset(&pointers[i], 0, (8-i) * sizeof(pointers[0]));
  80. }
  81. if (linesizes) {
  82. linesizes[0] = linesize;
  83. for (i = 1; planar && i < nb_channels; i++)
  84. linesizes[i] = linesizes[0];
  85. memset(&linesizes[i], 0, (8-i) * sizeof(linesizes[0]));
  86. }
  87. return planar ? linesize * nb_channels : linesize;
  88. }
  89. int av_samples_alloc(uint8_t *pointers[8], int linesizes[8],
  90. int nb_channels, int nb_samples,
  91. enum AVSampleFormat sample_fmt, int planar,
  92. int align)
  93. {
  94. uint8_t *buf;
  95. int size = av_samples_fill_arrays(NULL, NULL,
  96. NULL, nb_channels, nb_samples,
  97. sample_fmt, planar, align);
  98. buf = av_mallocz(size);
  99. if (!buf)
  100. return AVERROR(ENOMEM);
  101. return av_samples_fill_arrays(pointers, linesizes,
  102. buf, nb_channels, nb_samples,
  103. sample_fmt, planar, align);
  104. }