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.

169 lines
5.4KB

  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->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. assert(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 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]->codec->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]->codec->codec_id);
  61. assert(bps); // if false there IS a bug elsewhere (NOT in this function)
  62. pkt->dts=
  63. pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels);
  64. return ret;
  65. }
  66. static const AVOption pcm_options[] = {
  67. { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  68. { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  69. { NULL },
  70. };
  71. #define PCMDEF(name_, long_name_, ext, codec) \
  72. static const AVClass name_ ## _demuxer_class = { \
  73. .class_name = #name_ " demuxer", \
  74. .item_name = av_default_item_name, \
  75. .option = pcm_options, \
  76. .version = LIBAVUTIL_VERSION_INT, \
  77. }; \
  78. AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
  79. .name = #name_, \
  80. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  81. .priv_data_size = sizeof(PCMAudioDemuxerContext), \
  82. .read_header = pcm_read_header, \
  83. .read_packet = pcm_read_packet, \
  84. .read_seek = ff_pcm_read_seek, \
  85. .flags = AVFMT_GENERIC_INDEX, \
  86. .extensions = ext, \
  87. .raw_codec_id = codec, \
  88. .priv_class = &name_ ## _demuxer_class, \
  89. };
  90. PCMDEF(f64be, "PCM 64-bit floating-point big-endian",
  91. NULL, AV_CODEC_ID_PCM_F64BE)
  92. PCMDEF(f64le, "PCM 64-bit floating-point little-endian",
  93. NULL, AV_CODEC_ID_PCM_F64LE)
  94. PCMDEF(f32be, "PCM 32-bit floating-point big-endian",
  95. NULL, AV_CODEC_ID_PCM_F32BE)
  96. PCMDEF(f32le, "PCM 32-bit floating-point little-endian",
  97. NULL, AV_CODEC_ID_PCM_F32LE)
  98. PCMDEF(s32be, "PCM signed 32-bit big-endian",
  99. NULL, AV_CODEC_ID_PCM_S32BE)
  100. PCMDEF(s32le, "PCM signed 32-bit little-endian",
  101. NULL, AV_CODEC_ID_PCM_S32LE)
  102. PCMDEF(s24be, "PCM signed 24-bit big-endian",
  103. NULL, AV_CODEC_ID_PCM_S24BE)
  104. PCMDEF(s24le, "PCM signed 24-bit little-endian",
  105. NULL, AV_CODEC_ID_PCM_S24LE)
  106. PCMDEF(s16be, "PCM signed 16-bit big-endian",
  107. AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
  108. PCMDEF(s16le, "PCM signed 16-bit little-endian",
  109. AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE)
  110. PCMDEF(s8, "PCM signed 8-bit",
  111. "sb", AV_CODEC_ID_PCM_S8)
  112. PCMDEF(u32be, "PCM unsigned 32-bit big-endian",
  113. NULL, AV_CODEC_ID_PCM_U32BE)
  114. PCMDEF(u32le, "PCM unsigned 32-bit little-endian",
  115. NULL, AV_CODEC_ID_PCM_U32LE)
  116. PCMDEF(u24be, "PCM unsigned 24-bit big-endian",
  117. NULL, AV_CODEC_ID_PCM_U24BE)
  118. PCMDEF(u24le, "PCM unsigned 24-bit little-endian",
  119. NULL, AV_CODEC_ID_PCM_U24LE)
  120. PCMDEF(u16be, "PCM unsigned 16-bit big-endian",
  121. AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
  122. PCMDEF(u16le, "PCM unsigned 16-bit little-endian",
  123. AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
  124. PCMDEF(u8, "PCM unsigned 8-bit",
  125. "ub", AV_CODEC_ID_PCM_U8)
  126. PCMDEF(alaw, "PCM A-law",
  127. "al", AV_CODEC_ID_PCM_ALAW)
  128. PCMDEF(mulaw, "PCM mu-law",
  129. "ul", AV_CODEC_ID_PCM_MULAW)