FFmpeg
pcmdec.c
Go to the documentation of this file.
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 
22 #include "config_components.h"
23 
24 #include "libavutil/avstring.h"
26 #include "avformat.h"
27 #include "internal.h"
28 #include "pcm.h"
29 #include "libavutil/log.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/avassert.h"
32 
33 typedef struct PCMAudioDemuxerContext {
34  AVClass *class;
36 #if FF_API_OLD_CHANNEL_LAYOUT
37  int channels;
38 #endif
41 
43 {
44  PCMAudioDemuxerContext *s1 = s->priv_data;
45  AVCodecParameters *par;
46  AVStream *st;
47  uint8_t *mime_type = NULL;
48  int ret;
49 
50  st = avformat_new_stream(s, NULL);
51  if (!st)
52  return AVERROR(ENOMEM);
53  par = st->codecpar;
54 
56  par->codec_id = s->iformat->raw_codec_id;
57  par->sample_rate = s1->sample_rate;
58 #if FF_API_OLD_CHANNEL_LAYOUT
59  if (s1->ch_layout.nb_channels) {
60 #endif
61  ret = av_channel_layout_copy(&par->ch_layout, &s1->ch_layout);
62  if (ret < 0)
63  return ret;
64 #if FF_API_OLD_CHANNEL_LAYOUT
65  } else
66  par->ch_layout.nb_channels = s1->channels;
67 #endif
68 
69  av_opt_get(s->pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type);
70  if (mime_type && s->iformat->mime_type) {
71  int rate = 0, channels = 0, little_endian = 0;
72  const char *options;
73  if (av_stristart(mime_type, s->iformat->mime_type, &options)) { /* audio/L16 */
74  while (options = strchr(options, ';')) {
75  options++;
76  if (!rate)
77  sscanf(options, " rate=%d", &rate);
78  if (!channels)
79  sscanf(options, " channels=%d", &channels);
80  if (!little_endian) {
81  char val[sizeof("little-endian")];
82  if (sscanf(options, " endianness=%13s", val) == 1) {
83  little_endian = strcmp(val, "little-endian") == 0;
84  }
85  }
86  }
87  if (rate <= 0) {
89  "Invalid sample_rate found in mime_type \"%s\"\n",
90  mime_type);
91  av_freep(&mime_type);
92  return AVERROR_INVALIDDATA;
93  }
94  par->sample_rate = rate;
95  if (channels > 0) {
98  }
99  if (little_endian)
101  }
102  }
103  av_freep(&mime_type);
104 
106 
108 
110 
111  avpriv_set_pts_info(st, 64, 1, par->sample_rate);
112  return 0;
113 }
114 
115 static const AVOption pcm_options[] = {
116  { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 44100}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
117 #if FF_API_OLD_CHANNEL_LAYOUT
118  { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_DEPRECATED },
119  { "ch_layout", "", offsetof(PCMAudioDemuxerContext, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
120 #else
121  { "ch_layout", "", offsetof(PCMAudioDemuxerContext, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = "mono"}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
122 #endif
123  { NULL },
124 };
125 static const AVClass pcm_demuxer_class = {
126  .class_name = "pcm demuxer",
127  .item_name = av_default_item_name,
128  .option = pcm_options,
129  .version = LIBAVUTIL_VERSION_INT,
130 };
131 
132 #define PCMDEF_0(name_, long_name_, ext, codec, ...)
133 #define PCMDEF_1(name_, long_name_, ext, codec, ...) \
134 const AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \
135  .name = #name_, \
136  .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
137  .priv_data_size = sizeof(PCMAudioDemuxerContext), \
138  .read_header = pcm_read_header, \
139  .read_packet = ff_pcm_read_packet, \
140  .read_seek = ff_pcm_read_seek, \
141  .flags = AVFMT_GENERIC_INDEX, \
142  .extensions = ext, \
143  .raw_codec_id = codec, \
144  .priv_class = &pcm_demuxer_class, \
145  __VA_ARGS__ \
146 };
147 #define PCMDEF_2(name, long_name, ext, codec, enabled, ...) \
148  PCMDEF_ ## enabled(name, long_name, ext, codec, __VA_ARGS__)
149 #define PCMDEF_3(name, long_name, ext, codec, config, ...) \
150  PCMDEF_2(name, long_name, ext, codec, config, __VA_ARGS__)
151 #define PCMDEF_EXT(name, long_name, ext, uppercase, ...) \
152  PCMDEF_3(name, long_name, ext, AV_CODEC_ID_PCM_ ## uppercase, \
153  CONFIG_PCM_ ## uppercase ## _DEMUXER, __VA_ARGS__)
154 #define PCMDEF(name, long_name, ext, uppercase) \
155  PCMDEF_EXT(name, long_name, ext, uppercase, )
156 
157 PCMDEF(f64be, "PCM 64-bit floating-point big-endian", NULL, F64BE)
158 PCMDEF(f64le, "PCM 64-bit floating-point little-endian", NULL, F64LE)
159 PCMDEF(f32be, "PCM 32-bit floating-point big-endian", NULL, F32BE)
160 PCMDEF(f32le, "PCM 32-bit floating-point little-endian", NULL, F32LE)
161 PCMDEF(s32be, "PCM signed 32-bit big-endian", NULL, S32BE)
162 PCMDEF(s32le, "PCM signed 32-bit little-endian", NULL, S32LE)
163 PCMDEF(s24be, "PCM signed 24-bit big-endian", NULL, S24BE)
164 PCMDEF(s24le, "PCM signed 24-bit little-endian", NULL, S24LE)
165 PCMDEF_EXT(s16be, "PCM signed 16-bit big-endian",
166  AV_NE("sw", NULL), S16BE, .mime_type = "audio/L16")
167 PCMDEF(s16le, "PCM signed 16-bit little-endian", AV_NE(NULL, "sw"), S16LE)
168 PCMDEF(s8, "PCM signed 8-bit", "sb", S8)
169 PCMDEF(u32be, "PCM unsigned 32-bit big-endian", NULL, U32BE)
170 PCMDEF(u32le, "PCM unsigned 32-bit little-endian", NULL, U32LE)
171 PCMDEF(u24be, "PCM unsigned 24-bit big-endian", NULL, U24BE)
172 PCMDEF(u24le, "PCM unsigned 24-bit little-endian", NULL, U24LE)
173 PCMDEF(u16be, "PCM unsigned 16-bit big-endian", AV_NE("uw", NULL), U16BE)
174 PCMDEF(u16le, "PCM unsigned 16-bit little-endian", AV_NE(NULL, "uw"), U16LE)
175 PCMDEF(u8, "PCM unsigned 8-bit", "ub", U8)
176 PCMDEF(alaw, "PCM A-law", "al", ALAW)
177 PCMDEF(mulaw, "PCM mu-law", "ul", MULAW)
178 PCMDEF(vidc, "PCM Archimedes VIDC", NULL, VIDC)
179 
180 #if CONFIG_SLN_DEMUXER
181 static const AVOption sln_options[] = {
182  { "sample_rate", "", offsetof(PCMAudioDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
183 #if FF_API_OLD_CHANNEL_LAYOUT
184  { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_DEPRECATED },
185  { "ch_layout", "", offsetof(PCMAudioDemuxerContext, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
186 #else
187  { "ch_layout", "", offsetof(PCMAudioDemuxerContext, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = "mono"}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
188 #endif
189  { NULL },
190 };
191 
192 static const AVClass sln_demuxer_class = {
193  .class_name = "sln demuxer",
194  .item_name = av_default_item_name,
195  .option = sln_options,
196  .version = LIBAVUTIL_VERSION_INT,
197 };
198 
200  .name = "sln",
201  .long_name = NULL_IF_CONFIG_SMALL("Asterisk raw pcm"),
202  .priv_data_size = sizeof(PCMAudioDemuxerContext),
207  .extensions = "sln",
208  .raw_codec_id = AV_CODEC_ID_PCM_S16LE,
209  .priv_class = &sln_demuxer_class,
210 };
211 #endif
AV_CODEC_ID_PCM_S16LE
@ AV_CODEC_ID_PCM_S16LE
Definition: codec_id.h:318
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: options.c:237
pcm.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:57
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:53
PCMDEF
#define PCMDEF(name, long_name, ext, uppercase)
Definition: pcmdec.c:154
AVOption
AVOption.
Definition: opt.h:251
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:300
sample_rate
sample_rate
Definition: ffmpeg_filter.c:153
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:637
bit
#define bit(string, value)
Definition: cbs_mpeg2.c:58
A
#define A(x)
Definition: vp56_arith.h:28
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: avformat.c:697
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:151
PCMDEF_EXT
#define PCMDEF_EXT(name, long_name, ext, uppercase,...)
Definition: pcmdec.c:151
ub
#define ub(width, name)
Definition: cbs_h2645.c:264
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:482
val
static double val(void *priv, double ch)
Definition: aeval.c:77
av_get_bits_per_sample
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:586
avassert.h
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AVInputFormat
Definition: avformat.h:656
pcm_options
static const AVOption pcm_options[]
Definition: pcmdec.c:115
s
#define s(width, name)
Definition: cbs_vp9.c:256
AV_NE
#define AV_NE(be, le)
Definition: macros.h:33
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:661
pcm_demuxer_class
static const AVClass pcm_demuxer_class
Definition: pcmdec.c:125
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
s1
#define s1
Definition: regdef.h:38
PCM
#define PCM(format)
Definition: avisynth.c:50
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
channels
channels
Definition: aptx.h:32
av_stristart
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
Definition: avstring.c:48
AVFormatContext
Format I/O context.
Definition: avformat.h:1213
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1108
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:532
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
ff_sln_demuxer
const AVInputFormat ff_sln_demuxer
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
PCMAudioDemuxerContext::ch_layout
AVChannelLayout ch_layout
Definition: pcmdec.c:39
AV_OPT_TYPE_CHLAYOUT
@ AV_OPT_TYPE_CHLAYOUT
Definition: opt.h:245
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:212
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:177
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:630
options
const OptionDef options[]
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:290
AV_OPT_SEARCH_CHILDREN
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:563
PCMAudioDemuxerContext::sample_rate
int sample_rate
Definition: pcmdec.c:35
log.h
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:184
AV_OPT_FLAG_DECODING_PARAM
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:282
ff_pcm_read_packet
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: pcm.c:29
ret
ret
Definition: filter_design.txt:187
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
AVStream
Stream structure.
Definition: avformat.h:948
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:56
avformat.h
channel_layout.h
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
PCMAudioDemuxerContext
Definition: pcmdec.c:33
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:103
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:61
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
pcm_read_header
static int pcm_read_header(AVFormatContext *s)
Definition: pcmdec.c:42
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
S8
static const uint32_t S8[256]
Definition: cast5.c:328
av_opt_get
int av_opt_get(void *obj, const char *name, int search_flags, uint8_t **out_val)
Definition: opt.c:837
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
avstring.h
AV_OPT_FLAG_DEPRECATED
#define AV_OPT_FLAG_DEPRECATED
set if option is deprecated, users should refer to AVOption.help text for more information
Definition: opt.h:298