samplefmt.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. } 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. }