samplefmt.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 "avcore.h"
  19. #include "samplefmt.h"
  20. typedef struct SampleFmtInfo {
  21. const char *name;
  22. int bits;
  23. } SampleFmtInfo;
  24. /** this table gives more information about formats */
  25. static const SampleFmtInfo sample_fmt_info[AV_SAMPLE_FMT_NB] = {
  26. [AV_SAMPLE_FMT_U8] = { .name = "u8", .bits = 8 },
  27. [AV_SAMPLE_FMT_S16] = { .name = "s16", .bits = 16 },
  28. [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32 },
  29. [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32 },
  30. [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64 },
  31. };
  32. const char *av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
  33. {
  34. if (sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB)
  35. return NULL;
  36. return sample_fmt_info[sample_fmt].name;
  37. }
  38. enum AVSampleFormat av_get_sample_fmt(const char *name)
  39. {
  40. int i;
  41. for (i = 0; i < AV_SAMPLE_FMT_NB; i++)
  42. if (!strcmp(sample_fmt_info[i].name, name))
  43. return i;
  44. return AV_SAMPLE_FMT_NONE;
  45. }
  46. char *av_get_sample_fmt_string (char *buf, int buf_size, enum AVSampleFormat sample_fmt)
  47. {
  48. /* print header */
  49. if (sample_fmt < 0)
  50. snprintf(buf, buf_size, "name " " depth");
  51. else if (sample_fmt < AV_SAMPLE_FMT_NB) {
  52. SampleFmtInfo info = sample_fmt_info[sample_fmt];
  53. snprintf (buf, buf_size, "%-6s" " %2d ", info.name, info.bits);
  54. }
  55. return buf;
  56. }
  57. int av_get_bits_per_sample_fmt(enum AVSampleFormat sample_fmt)
  58. {
  59. return sample_fmt < 0 || sample_fmt >= AV_SAMPLE_FMT_NB ?
  60. 0 : sample_fmt_info[sample_fmt].bits;
  61. }