libavformat/pcmdec.c
e94204df
 /*
  * RAW PCM demuxers
  * Copyright (c) 2002 Fabrice Bellard
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "avformat.h"
2ef4d586
 #include "internal.h"
e94204df
 #include "pcm.h"
34d2bf30
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
948e97a2
 #include "libavutil/avassert.h"
e94204df
 
254056c4
 typedef struct PCMAudioDemuxerContext {
2ef4d586
     AVClass *class;
     int sample_rate;
     int channels;
254056c4
 } PCMAudioDemuxerContext;
2ef4d586
 
254056c4
 static int pcm_read_header(AVFormatContext *s)
2ef4d586
 {
254056c4
     PCMAudioDemuxerContext *s1 = s->priv_data;
2ef4d586
     AVStream *st;
4c42d306
     uint8_t *mime_type = NULL;
2ef4d586
 
     st = avformat_new_stream(s, NULL);
     if (!st)
         return AVERROR(ENOMEM);
 
 
9200514a
     st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
     st->codecpar->codec_id    = s->iformat->raw_codec_id;
     st->codecpar->sample_rate = s1->sample_rate;
     st->codecpar->channels    = s1->channels;
2ef4d586
 
4c42d306
     av_opt_get(s->pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type);
     if (mime_type && s->iformat->mime_type) {
         int rate = 0, channels = 0;
         size_t len = strlen(s->iformat->mime_type);
         if (!strncmp(s->iformat->mime_type, mime_type, len)) {
             uint8_t *options = mime_type + len;
             len = strlen(mime_type);
             while (options < mime_type + len) {
                 options = strstr(options, ";");
                 if (!options++)
                     break;
                 if (!rate)
                     sscanf(options, " rate=%d",     &rate);
                 if (!channels)
                     sscanf(options, " channels=%d", &channels);
             }
             if (rate <= 0) {
                 av_log(s, AV_LOG_ERROR,
                        "Invalid sample_rate found in mime_type \"%s\"\n",
                        mime_type);
a5b5ce26
                 av_freep(&mime_type);
4c42d306
                 return AVERROR_INVALIDDATA;
             }
             st->codecpar->sample_rate = rate;
             if (channels > 0)
                 st->codecpar->channels = channels;
         }
     }
a5b5ce26
     av_freep(&mime_type);
4c42d306
 
9200514a
     st->codecpar->bits_per_coded_sample =
         av_get_bits_per_sample(st->codecpar->codec_id);
2ef4d586
 
6f69f7a8
     av_assert0(st->codecpar->bits_per_coded_sample > 0);
2ef4d586
 
9200514a
     st->codecpar->block_align =
         st->codecpar->bits_per_coded_sample * st->codecpar->channels / 8;
2ef4d586
 
9200514a
     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
2ef4d586
     return 0;
 }
 
34d2bf30
 static const AVOption pcm_options[] = {
9aa630a5
     { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 44100}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
254056c4
     { "channels",    "", offsetof(PCMAudioDemuxerContext, channels),    AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
34d2bf30
     { NULL },
 };
 
4c42d306
 #define PCMDEF(name_, long_name_, ext, codec, ...)          \
30b4ee79
 static const AVClass name_ ## _demuxer_class = {            \
     .class_name = #name_ " demuxer",                        \
     .item_name  = av_default_item_name,                     \
     .option     = pcm_options,                              \
     .version    = LIBAVUTIL_VERSION_INT,                    \
 };                                                          \
 AVInputFormat ff_pcm_ ## name_ ## _demuxer = {              \
     .name           = #name_,                               \
     .long_name      = NULL_IF_CONFIG_SMALL(long_name_),     \
254056c4
     .priv_data_size = sizeof(PCMAudioDemuxerContext),       \
     .read_header    = pcm_read_header,                      \
93dc8ed0
     .read_packet    = ff_pcm_read_packet,                   \
167f3b8d
     .read_seek      = ff_pcm_read_seek,                     \
30b4ee79
     .flags          = AVFMT_GENERIC_INDEX,                  \
     .extensions     = ext,                                  \
f7fe41a0
     .raw_codec_id   = codec,                                \
30b4ee79
     .priv_class     = &name_ ## _demuxer_class,             \
f866f22c
     __VA_ARGS__                                             \
e94204df
 };
 
6774247a
 PCMDEF(f64be, "PCM 64-bit floating-point big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_F64BE)
e94204df
 
6774247a
 PCMDEF(f64le, "PCM 64-bit floating-point little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_F64LE)
e94204df
 
6774247a
 PCMDEF(f32be, "PCM 32-bit floating-point big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_F32BE)
e94204df
 
6774247a
 PCMDEF(f32le, "PCM 32-bit floating-point little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_F32LE)
e94204df
 
6774247a
 PCMDEF(s32be, "PCM signed 32-bit big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_S32BE)
e94204df
 
6774247a
 PCMDEF(s32le, "PCM signed 32-bit little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_S32LE)
e94204df
 
6774247a
 PCMDEF(s24be, "PCM signed 24-bit big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_S24BE)
e94204df
 
6774247a
 PCMDEF(s24le, "PCM signed 24-bit little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_S24LE)
e94204df
 
6774247a
 PCMDEF(s16be, "PCM signed 16-bit big-endian",
36ef5369
        AV_NE("sw", NULL), AV_CODEC_ID_PCM_S16BE)
e94204df
 
6774247a
 PCMDEF(s16le, "PCM signed 16-bit little-endian",
4c42d306
        AV_NE(NULL, "sw"), AV_CODEC_ID_PCM_S16LE, .mime_type = "audio/L16",)
e94204df
 
6774247a
 PCMDEF(s8, "PCM signed 8-bit",
36ef5369
        "sb", AV_CODEC_ID_PCM_S8)
e94204df
 
6774247a
 PCMDEF(u32be, "PCM unsigned 32-bit big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_U32BE)
e94204df
 
6774247a
 PCMDEF(u32le, "PCM unsigned 32-bit little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_U32LE)
e94204df
 
6774247a
 PCMDEF(u24be, "PCM unsigned 24-bit big-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_U24BE)
e94204df
 
6774247a
 PCMDEF(u24le, "PCM unsigned 24-bit little-endian",
36ef5369
        NULL, AV_CODEC_ID_PCM_U24LE)
e94204df
 
6774247a
 PCMDEF(u16be, "PCM unsigned 16-bit big-endian",
36ef5369
        AV_NE("uw", NULL), AV_CODEC_ID_PCM_U16BE)
e94204df
 
6774247a
 PCMDEF(u16le, "PCM unsigned 16-bit little-endian",
36ef5369
        AV_NE(NULL, "uw"), AV_CODEC_ID_PCM_U16LE)
e94204df
 
6774247a
 PCMDEF(u8, "PCM unsigned 8-bit",
36ef5369
        "ub", AV_CODEC_ID_PCM_U8)
e94204df
 
6774247a
 PCMDEF(alaw, "PCM A-law",
36ef5369
        "al", AV_CODEC_ID_PCM_ALAW)
e94204df
 
6774247a
 PCMDEF(mulaw, "PCM mu-law",
36ef5369
        "ul", AV_CODEC_ID_PCM_MULAW)
eff913c9
 
 static const AVOption sln_options[] = {
     { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
     { "channels",    "", offsetof(PCMAudioDemuxerContext, channels),    AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
     { NULL },
 };
 
 static const AVClass sln_demuxer_class = {
     .class_name = "sln demuxer",
     .item_name  = av_default_item_name,
     .option     = sln_options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
 AVInputFormat ff_sln_demuxer = {
     .name           = "sln",
     .long_name      = NULL_IF_CONFIG_SMALL("Asterisk raw pcm"),
     .priv_data_size = sizeof(PCMAudioDemuxerContext),
     .read_header    = pcm_read_header,
     .read_packet    = ff_pcm_read_packet,
     .read_seek      = ff_pcm_read_seek,
     .flags          = AVFMT_GENERIC_INDEX,
     .extensions     = "sln",
     .raw_codec_id   = AV_CODEC_ID_PCM_S16LE,
     .priv_class     = &sln_demuxer_class,
 };