pcmdec.c 4.6 KB

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