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.5KB

  1. /*
  2. * RAW PCM demuxers
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. #define RAW_SAMPLES 1024
  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->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  40. st->codecpar->codec_id = s->iformat->raw_codec_id;
  41. st->codecpar->sample_rate = s1->sample_rate;
  42. st->codecpar->channels = s1->channels;
  43. st->codecpar->bits_per_coded_sample =
  44. av_get_bits_per_sample(st->codecpar->codec_id);
  45. assert(st->codecpar->bits_per_coded_sample > 0);
  46. st->codecpar->block_align =
  47. st->codecpar->bits_per_coded_sample * st->codecpar->channels / 8;
  48. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  49. return 0;
  50. }
  51. static int pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
  52. {
  53. int ret, size, bps;
  54. // AVStream *st = s->streams[0];
  55. size= RAW_SAMPLES*s->streams[0]->codecpar->block_align;
  56. ret= av_get_packet(s->pb, pkt, size);
  57. pkt->stream_index = 0;
  58. if (ret < 0)
  59. return ret;
  60. bps= av_get_bits_per_sample(s->streams[0]->codecpar->codec_id);
  61. if (!bps) {
  62. av_log(s, AV_LOG_ERROR, "Unknown number of bytes per sample.\n");
  63. return AVERROR(EINVAL);
  64. }
  65. pkt->dts=
  66. pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codecpar->channels);
  67. return ret;
  68. }
  69. static const AVOption pcm_options[] = {
  70. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  71. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  72. { NULL },
  73. };
  74. #define PCMDEF(name_, long_name_, ext, codec) \
  75. static const AVClass name_ ## _demuxer_class = { \
  76. .class_name = #name_ " demuxer", \
  77. .item_name = av_default_item_name, \
  78. .option = pcm_options, \
  79. .version = LIBAVUTIL_VERSION_INT, \
  80. }; \
  81. AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
  82. .name = #name_, \
  83. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  84. .priv_data_size = sizeof(PCMAudioDemuxerContext), \
  85. .read_header = pcm_read_header, \
  86. .read_packet = pcm_read_packet, \
  87. .read_seek = ff_pcm_read_seek, \
  88. .flags = AVFMT_GENERIC_INDEX, \
  89. .extensions = ext, \
  90. .raw_codec_id = codec, \
  91. .priv_class = &name_ ## _demuxer_class, \
  92. };
  93. PCMDEF(f64be, "PCM 64-bit floating-point big-endian",
  94. NULL, AV_CODEC_ID_PCM_F64BE)
  95. PCMDEF(f64le, "PCM 64-bit floating-point little-endian",
  96. NULL, AV_CODEC_ID_PCM_F64LE)
  97. PCMDEF(f32be, "PCM 32-bit floating-point big-endian",
  98. NULL, AV_CODEC_ID_PCM_F32BE)
  99. PCMDEF(f32le, "PCM 32-bit floating-point little-endian",
  100. NULL, AV_CODEC_ID_PCM_F32LE)
  101. PCMDEF(s32be, "PCM signed 32-bit big-endian",
  102. NULL, AV_CODEC_ID_PCM_S32BE)
  103. PCMDEF(s32le, "PCM signed 32-bit little-endian",
  104. NULL, AV_CODEC_ID_PCM_S32LE)
  105. PCMDEF(s24be, "PCM signed 24-bit big-endian",
  106. NULL, AV_CODEC_ID_PCM_S24BE)
  107. PCMDEF(s24le, "PCM signed 24-bit little-endian",
  108. NULL, AV_CODEC_ID_PCM_S24LE)
  109. PCMDEF(s16be, "PCM signed 16-bit big-endian",
  110. AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
  111. PCMDEF(s16le, "PCM signed 16-bit little-endian",
  112. AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE)
  113. PCMDEF(s8, "PCM signed 8-bit",
  114. "sb", AV_CODEC_ID_PCM_S8)
  115. PCMDEF(u32be, "PCM unsigned 32-bit big-endian",
  116. NULL, AV_CODEC_ID_PCM_U32BE)
  117. PCMDEF(u32le, "PCM unsigned 32-bit little-endian",
  118. NULL, AV_CODEC_ID_PCM_U32LE)
  119. PCMDEF(u24be, "PCM unsigned 24-bit big-endian",
  120. NULL, AV_CODEC_ID_PCM_U24BE)
  121. PCMDEF(u24le, "PCM unsigned 24-bit little-endian",
  122. NULL, AV_CODEC_ID_PCM_U24LE)
  123. PCMDEF(u16be, "PCM unsigned 16-bit big-endian",
  124. AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
  125. PCMDEF(u16le, "PCM unsigned 16-bit little-endian",
  126. AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
  127. PCMDEF(u8, "PCM unsigned 8-bit",
  128. "ub", AV_CODEC_ID_PCM_U8)
  129. PCMDEF(alaw, "PCM A-law",
  130. "al", AV_CODEC_ID_PCM_ALAW)
  131. PCMDEF(mulaw, "PCM mu-law",
  132. "ul", AV_CODEC_ID_PCM_MULAW)