pcmdec.c 3.6 KB

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