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.

137 lines
4.7KB

  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 "rawdec.h"
  23. #include "pcm.h"
  24. #include "libavutil/log.h"
  25. #include "libavutil/opt.h"
  26. #define RAW_SAMPLES 1024
  27. static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
  28. {
  29. int ret, size, bps;
  30. // AVStream *st = s->streams[0];
  31. size= RAW_SAMPLES*s->streams[0]->codec->block_align;
  32. ret= av_get_packet(s->pb, pkt, size);
  33. pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
  34. pkt->stream_index = 0;
  35. if (ret < 0)
  36. return ret;
  37. bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id);
  38. assert(bps); // if false there IS a bug elsewhere (NOT in this function)
  39. pkt->dts=
  40. pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels);
  41. return ret;
  42. }
  43. static const AVOption pcm_options[] = {
  44. { "sample_rate", "", offsetof(RawAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  45. { "channels", "", offsetof(RawAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  46. { NULL },
  47. };
  48. #define PCMDEF(name_, long_name_, ext, codec) \
  49. static const AVClass name_ ## _demuxer_class = { \
  50. .class_name = #name_ " demuxer", \
  51. .item_name = av_default_item_name, \
  52. .option = pcm_options, \
  53. .version = LIBAVUTIL_VERSION_INT, \
  54. }; \
  55. AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
  56. .name = #name_, \
  57. .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
  58. .priv_data_size = sizeof(RawAudioDemuxerContext), \
  59. .read_header = ff_raw_read_header, \
  60. .read_packet = raw_read_packet, \
  61. .read_seek = ff_pcm_read_seek, \
  62. .flags = AVFMT_GENERIC_INDEX, \
  63. .extensions = ext, \
  64. .raw_codec_id = codec, \
  65. .priv_class = &name_ ## _demuxer_class, \
  66. };
  67. PCMDEF(f64be, "PCM 64 bit floating-point big-endian format",
  68. NULL, CODEC_ID_PCM_F64BE)
  69. PCMDEF(f64le, "PCM 64 bit floating-point little-endian format",
  70. NULL, CODEC_ID_PCM_F64LE)
  71. PCMDEF(f32be, "PCM 32 bit floating-point big-endian format",
  72. NULL, CODEC_ID_PCM_F32BE)
  73. PCMDEF(f32le, "PCM 32 bit floating-point little-endian format",
  74. NULL, CODEC_ID_PCM_F32LE)
  75. PCMDEF(s32be, "PCM signed 32 bit big-endian format",
  76. NULL, CODEC_ID_PCM_S32BE)
  77. PCMDEF(s32le, "PCM signed 32 bit little-endian format",
  78. NULL, CODEC_ID_PCM_S32LE)
  79. PCMDEF(s24be, "PCM signed 24 bit big-endian format",
  80. NULL, CODEC_ID_PCM_S24BE)
  81. PCMDEF(s24le, "PCM signed 24 bit little-endian format",
  82. NULL, CODEC_ID_PCM_S24LE)
  83. PCMDEF(s16be, "PCM signed 16 bit big-endian format",
  84. AV_NE("sw", NULL), CODEC_ID_PCM_S16BE)
  85. PCMDEF(s16le, "PCM signed 16 bit little-endian format",
  86. AV_NE(NULL, "sw"), CODEC_ID_PCM_S16LE)
  87. PCMDEF(s8, "PCM signed 8 bit format",
  88. "sb", CODEC_ID_PCM_S8)
  89. PCMDEF(u32be, "PCM unsigned 32 bit big-endian format",
  90. NULL, CODEC_ID_PCM_U32BE)
  91. PCMDEF(u32le, "PCM unsigned 32 bit little-endian format",
  92. NULL, CODEC_ID_PCM_U32LE)
  93. PCMDEF(u24be, "PCM unsigned 24 bit big-endian format",
  94. NULL, CODEC_ID_PCM_U24BE)
  95. PCMDEF(u24le, "PCM unsigned 24 bit little-endian format",
  96. NULL, CODEC_ID_PCM_U24LE)
  97. PCMDEF(u16be, "PCM unsigned 16 bit big-endian format",
  98. AV_NE("uw", NULL), CODEC_ID_PCM_U16BE)
  99. PCMDEF(u16le, "PCM unsigned 16 bit little-endian format",
  100. AV_NE(NULL, "uw"), CODEC_ID_PCM_U16LE)
  101. PCMDEF(u8, "PCM unsigned 8 bit format",
  102. "ub", CODEC_ID_PCM_U8)
  103. PCMDEF(alaw, "PCM A-law format",
  104. "al", CODEC_ID_PCM_ALAW)
  105. PCMDEF(mulaw, "PCM mu-law format",
  106. "ul", CODEC_ID_PCM_MULAW)