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.

208 lines
7.2KB

  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. uint8_t *mime_type = NULL;
  37. st = avformat_new_stream(s, NULL);
  38. if (!st)
  39. return AVERROR(ENOMEM);
  40. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  41. st->codecpar->codec_id = s->iformat->raw_codec_id;
  42. st->codecpar->sample_rate = s1->sample_rate;
  43. st->codecpar->channels = s1->channels;
  44. av_opt_get(s->pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type);
  45. if (mime_type && s->iformat->mime_type) {
  46. int rate = 0, channels = 0;
  47. size_t len = strlen(s->iformat->mime_type);
  48. if (!av_strncasecmp(s->iformat->mime_type, mime_type, len)) {
  49. uint8_t *options = mime_type + len;
  50. len = strlen(mime_type);
  51. while (options < mime_type + len) {
  52. options = strstr(options, ";");
  53. if (!options++)
  54. break;
  55. if (!rate)
  56. sscanf(options, " rate=%d", &rate);
  57. if (!channels)
  58. sscanf(options, " channels=%d", &channels);
  59. }
  60. if (rate <= 0) {
  61. av_log(s, AV_LOG_ERROR,
  62. "Invalid sample_rate found in mime_type \"%s\"\n",
  63. mime_type);
  64. av_freep(&mime_type);
  65. return AVERROR_INVALIDDATA;
  66. }
  67. st->codecpar->sample_rate = rate;
  68. if (channels > 0)
  69. st->codecpar->channels = channels;
  70. }
  71. }
  72. av_freep(&mime_type);
  73. st->codecpar->bits_per_coded_sample =
  74. av_get_bits_per_sample(st->codecpar->codec_id);
  75. av_assert0(st->codecpar->bits_per_coded_sample > 0);
  76. st->codecpar->block_align =
  77. st->codecpar->bits_per_coded_sample * st->codecpar->channels / 8;
  78. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  79. return 0;
  80. }
  81. static const AVOption pcm_options[] = {
  82. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 44100}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  83. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  84. { NULL },
  85. };
  86. #define PCMDEF(name_, long_name_, ext, codec, ...) \
  87. static const AVClass name_ ## _demuxer_class = { \
  88. .class_name = #name_ " demuxer", \
  89. .item_name = av_default_item_name, \
  90. .option = pcm_options, \
  91. .version = LIBAVUTIL_VERSION_INT, \
  92. }; \
  93. AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
  94. .name = #name_, \
  95. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  96. .priv_data_size = sizeof(PCMAudioDemuxerContext), \
  97. .read_header = pcm_read_header, \
  98. .read_packet = ff_pcm_read_packet, \
  99. .read_seek = ff_pcm_read_seek, \
  100. .flags = AVFMT_GENERIC_INDEX, \
  101. .extensions = ext, \
  102. .raw_codec_id = codec, \
  103. .priv_class = &name_ ## _demuxer_class, \
  104. __VA_ARGS__ \
  105. };
  106. PCMDEF(f64be, "PCM 64-bit floating-point big-endian",
  107. NULL, AV_CODEC_ID_PCM_F64BE)
  108. PCMDEF(f64le, "PCM 64-bit floating-point little-endian",
  109. NULL, AV_CODEC_ID_PCM_F64LE)
  110. PCMDEF(f32be, "PCM 32-bit floating-point big-endian",
  111. NULL, AV_CODEC_ID_PCM_F32BE)
  112. PCMDEF(f32le, "PCM 32-bit floating-point little-endian",
  113. NULL, AV_CODEC_ID_PCM_F32LE)
  114. PCMDEF(s32be, "PCM signed 32-bit big-endian",
  115. NULL, AV_CODEC_ID_PCM_S32BE)
  116. PCMDEF(s32le, "PCM signed 32-bit little-endian",
  117. NULL, AV_CODEC_ID_PCM_S32LE)
  118. PCMDEF(s24be, "PCM signed 24-bit big-endian",
  119. NULL, AV_CODEC_ID_PCM_S24BE)
  120. PCMDEF(s24le, "PCM signed 24-bit little-endian",
  121. NULL, AV_CODEC_ID_PCM_S24LE)
  122. PCMDEF(s16be, "PCM signed 16-bit big-endian",
  123. AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
  124. PCMDEF(s16le, "PCM signed 16-bit little-endian",
  125. AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE, .mime_type = "audio/L16",)
  126. PCMDEF(s8, "PCM signed 8-bit",
  127. "sb", AV_CODEC_ID_PCM_S8)
  128. PCMDEF(u32be, "PCM unsigned 32-bit big-endian",
  129. NULL, AV_CODEC_ID_PCM_U32BE)
  130. PCMDEF(u32le, "PCM unsigned 32-bit little-endian",
  131. NULL, AV_CODEC_ID_PCM_U32LE)
  132. PCMDEF(u24be, "PCM unsigned 24-bit big-endian",
  133. NULL, AV_CODEC_ID_PCM_U24BE)
  134. PCMDEF(u24le, "PCM unsigned 24-bit little-endian",
  135. NULL, AV_CODEC_ID_PCM_U24LE)
  136. PCMDEF(u16be, "PCM unsigned 16-bit big-endian",
  137. AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
  138. PCMDEF(u16le, "PCM unsigned 16-bit little-endian",
  139. AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
  140. PCMDEF(u8, "PCM unsigned 8-bit",
  141. "ub", AV_CODEC_ID_PCM_U8)
  142. PCMDEF(alaw, "PCM A-law",
  143. "al", AV_CODEC_ID_PCM_ALAW)
  144. PCMDEF(mulaw, "PCM mu-law",
  145. "ul", AV_CODEC_ID_PCM_MULAW)
  146. PCMDEF(vidc, "PCM Archimedes VIDC",
  147. NULL, AV_CODEC_ID_PCM_VIDC)
  148. static const AVOption sln_options[] = {
  149. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  150. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  151. { NULL },
  152. };
  153. static const AVClass sln_demuxer_class = {
  154. .class_name = "sln demuxer",
  155. .item_name = av_default_item_name,
  156. .option = sln_options,
  157. .version = LIBAVUTIL_VERSION_INT,
  158. };
  159. AVInputFormat ff_sln_demuxer = {
  160. .name = "sln",
  161. .long_name = NULL_IF_CONFIG_SMALL("Asterisk raw pcm"),
  162. .priv_data_size = sizeof(PCMAudioDemuxerContext),
  163. .read_header = pcm_read_header,
  164. .read_packet = ff_pcm_read_packet,
  165. .read_seek = ff_pcm_read_seek,
  166. .flags = AVFMT_GENERIC_INDEX,
  167. .extensions = "sln",
  168. .raw_codec_id = AV_CODEC_ID_PCM_S16LE,
  169. .priv_class = &sln_demuxer_class,
  170. };