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.

173 lines
5.9KB

  1. /*
  2. * RAW PCM demuxers
  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 "internal.h"
  23. #include "pcm.h"
  24. #include "libavutil/log.h"
  25. #include "libavutil/opt.h"
  26. #include "libavutil/avassert.h"
  27. typedef struct PCMAudioDemuxerContext {
  28. AVClass *class;
  29. int sample_rate;
  30. int channels;
  31. } PCMAudioDemuxerContext;
  32. static int pcm_read_header(AVFormatContext *s)
  33. {
  34. PCMAudioDemuxerContext *s1 = s->priv_data;
  35. AVStream *st;
  36. st = avformat_new_stream(s, NULL);
  37. if (!st)
  38. return AVERROR(ENOMEM);
  39. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  40. st->codec->codec_id = s->iformat->raw_codec_id;
  41. st->codec->sample_rate = s1->sample_rate;
  42. st->codec->channels = s1->channels;
  43. st->codec->bits_per_coded_sample =
  44. av_get_bits_per_sample(st->codec->codec_id);
  45. av_assert0(st->codec->bits_per_coded_sample > 0);
  46. st->codec->block_align =
  47. st->codec->bits_per_coded_sample * st->codec->channels / 8;
  48. avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
  49. return 0;
  50. }
  51. static const AVOption pcm_options[] = {
  52. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 44100}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  53. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  54. { NULL },
  55. };
  56. #define PCMDEF(name_, long_name_, ext, codec) \
  57. static const AVClass name_ ## _demuxer_class = { \
  58. .class_name = #name_ " demuxer", \
  59. .item_name = av_default_item_name, \
  60. .option = pcm_options, \
  61. .version = LIBAVUTIL_VERSION_INT, \
  62. }; \
  63. AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
  64. .name = #name_, \
  65. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  66. .priv_data_size = sizeof(PCMAudioDemuxerContext), \
  67. .read_header = pcm_read_header, \
  68. .read_packet = ff_pcm_read_packet, \
  69. .read_seek = ff_pcm_read_seek, \
  70. .flags = AVFMT_GENERIC_INDEX, \
  71. .extensions = ext, \
  72. .raw_codec_id = codec, \
  73. .priv_class = &name_ ## _demuxer_class, \
  74. };
  75. PCMDEF(f64be, "PCM 64-bit floating-point big-endian",
  76. NULL, AV_CODEC_ID_PCM_F64BE)
  77. PCMDEF(f64le, "PCM 64-bit floating-point little-endian",
  78. NULL, AV_CODEC_ID_PCM_F64LE)
  79. PCMDEF(f32be, "PCM 32-bit floating-point big-endian",
  80. NULL, AV_CODEC_ID_PCM_F32BE)
  81. PCMDEF(f32le, "PCM 32-bit floating-point little-endian",
  82. NULL, AV_CODEC_ID_PCM_F32LE)
  83. PCMDEF(s32be, "PCM signed 32-bit big-endian",
  84. NULL, AV_CODEC_ID_PCM_S32BE)
  85. PCMDEF(s32le, "PCM signed 32-bit little-endian",
  86. NULL, AV_CODEC_ID_PCM_S32LE)
  87. PCMDEF(s24be, "PCM signed 24-bit big-endian",
  88. NULL, AV_CODEC_ID_PCM_S24BE)
  89. PCMDEF(s24le, "PCM signed 24-bit little-endian",
  90. NULL, AV_CODEC_ID_PCM_S24LE)
  91. PCMDEF(s16be, "PCM signed 16-bit big-endian",
  92. AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
  93. PCMDEF(s16le, "PCM signed 16-bit little-endian",
  94. AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE)
  95. PCMDEF(s8, "PCM signed 8-bit",
  96. "sb", AV_CODEC_ID_PCM_S8)
  97. PCMDEF(u32be, "PCM unsigned 32-bit big-endian",
  98. NULL, AV_CODEC_ID_PCM_U32BE)
  99. PCMDEF(u32le, "PCM unsigned 32-bit little-endian",
  100. NULL, AV_CODEC_ID_PCM_U32LE)
  101. PCMDEF(u24be, "PCM unsigned 24-bit big-endian",
  102. NULL, AV_CODEC_ID_PCM_U24BE)
  103. PCMDEF(u24le, "PCM unsigned 24-bit little-endian",
  104. NULL, AV_CODEC_ID_PCM_U24LE)
  105. PCMDEF(u16be, "PCM unsigned 16-bit big-endian",
  106. AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
  107. PCMDEF(u16le, "PCM unsigned 16-bit little-endian",
  108. AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
  109. PCMDEF(u8, "PCM unsigned 8-bit",
  110. "ub", AV_CODEC_ID_PCM_U8)
  111. PCMDEF(alaw, "PCM A-law",
  112. "al", AV_CODEC_ID_PCM_ALAW)
  113. PCMDEF(mulaw, "PCM mu-law",
  114. "ul", AV_CODEC_ID_PCM_MULAW)
  115. static const AVOption sln_options[] = {
  116. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  117. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  118. { NULL },
  119. };
  120. static const AVClass sln_demuxer_class = {
  121. .class_name = "sln demuxer",
  122. .item_name = av_default_item_name,
  123. .option = sln_options,
  124. .version = LIBAVUTIL_VERSION_INT,
  125. };
  126. AVInputFormat ff_sln_demuxer = {
  127. .name = "sln",
  128. .long_name = NULL_IF_CONFIG_SMALL("Asterisk raw pcm"),
  129. .priv_data_size = sizeof(PCMAudioDemuxerContext),
  130. .read_header = pcm_read_header,
  131. .read_packet = ff_pcm_read_packet,
  132. .read_seek = ff_pcm_read_seek,
  133. .flags = AVFMT_GENERIC_INDEX,
  134. .extensions = "sln",
  135. .raw_codec_id = AV_CODEC_ID_PCM_S16LE,
  136. .priv_class = &sln_demuxer_class,
  137. };