pcmenc.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * RAW PCM muxers
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avformat.h"
  22. #include "rawenc.h"
  23. #define PCMDEF(name, long_name, ext, codec) \
  24. AVOutputFormat ff_pcm_ ## name ## _muxer = {\
  25. #name,\
  26. NULL_IF_CONFIG_SMALL(long_name),\
  27. NULL,\
  28. ext,\
  29. 0,\
  30. codec,\
  31. CODEC_ID_NONE,\
  32. NULL,\
  33. ff_raw_write_packet,\
  34. .flags= AVFMT_NOTIMESTAMPS,\
  35. };
  36. PCMDEF(f64be, "PCM 64 bit floating-point big-endian format",
  37. NULL, CODEC_ID_PCM_F64BE)
  38. PCMDEF(f64le, "PCM 64 bit floating-point little-endian format",
  39. NULL, CODEC_ID_PCM_F64LE)
  40. PCMDEF(f32be, "PCM 32 bit floating-point big-endian format",
  41. NULL, CODEC_ID_PCM_F32BE)
  42. PCMDEF(f32le, "PCM 32 bit floating-point little-endian format",
  43. NULL, CODEC_ID_PCM_F32LE)
  44. PCMDEF(s32be, "PCM signed 32 bit big-endian format",
  45. NULL, CODEC_ID_PCM_S32BE)
  46. PCMDEF(s32le, "PCM signed 32 bit little-endian format",
  47. NULL, CODEC_ID_PCM_S32LE)
  48. PCMDEF(s24be, "PCM signed 24 bit big-endian format",
  49. NULL, CODEC_ID_PCM_S24BE)
  50. PCMDEF(s24le, "PCM signed 24 bit little-endian format",
  51. NULL, CODEC_ID_PCM_S24LE)
  52. PCMDEF(s16be, "PCM signed 16 bit big-endian format",
  53. AV_NE("sw", NULL), CODEC_ID_PCM_S16BE)
  54. PCMDEF(s16le, "PCM signed 16 bit little-endian format",
  55. AV_NE(NULL, "sw"), CODEC_ID_PCM_S16LE)
  56. PCMDEF(s8, "PCM signed 8 bit format",
  57. "sb", CODEC_ID_PCM_S8)
  58. PCMDEF(u32be, "PCM unsigned 32 bit big-endian format",
  59. NULL, CODEC_ID_PCM_U32BE)
  60. PCMDEF(u32le, "PCM unsigned 32 bit little-endian format",
  61. NULL, CODEC_ID_PCM_U32LE)
  62. PCMDEF(u24be, "PCM unsigned 24 bit big-endian format",
  63. NULL, CODEC_ID_PCM_U24BE)
  64. PCMDEF(u24le, "PCM unsigned 24 bit little-endian format",
  65. NULL, CODEC_ID_PCM_U24LE)
  66. PCMDEF(u16be, "PCM unsigned 16 bit big-endian format",
  67. AV_NE("uw", NULL), CODEC_ID_PCM_U16BE)
  68. PCMDEF(u16le, "PCM unsigned 16 bit little-endian format",
  69. AV_NE(NULL, "uw"), CODEC_ID_PCM_U16LE)
  70. PCMDEF(u8, "PCM unsigned 8 bit format",
  71. "ub", CODEC_ID_PCM_U8)
  72. PCMDEF(alaw, "PCM A-law format",
  73. "al", CODEC_ID_PCM_ALAW)
  74. PCMDEF(mulaw, "PCM mu-law format",
  75. "ul", CODEC_ID_PCM_MULAW)