FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
au.c
Go to the documentation of this file.
1 /*
2  * AU muxer and demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * first version by Francois Revol <revol@free.fr>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 /*
25  * Reference documents:
26  * http://www.opengroup.org/public/pubs/external/auformat.html
27  * http://www.goice.co.jp/member/mo/formats/au.html
28  */
29 
30 #include "avformat.h"
31 #include "internal.h"
32 #include "avio_internal.h"
33 #include "pcm.h"
34 #include "libavutil/avassert.h"
35 
36 /* if we don't know the size in advance */
37 #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
38 /* the specification requires an annotation field of at least eight bytes */
39 #define AU_HEADER_SIZE (24+8)
40 
41 static const AVCodecTag codec_au_tags[] = {
42  { AV_CODEC_ID_PCM_MULAW, 1 },
43  { AV_CODEC_ID_PCM_S8, 2 },
44  { AV_CODEC_ID_PCM_S16BE, 3 },
45  { AV_CODEC_ID_PCM_S24BE, 4 },
46  { AV_CODEC_ID_PCM_S32BE, 5 },
47  { AV_CODEC_ID_PCM_F32BE, 6 },
48  { AV_CODEC_ID_PCM_F64BE, 7 },
53  { AV_CODEC_ID_PCM_ALAW, 27 },
54  { AV_CODEC_ID_ADPCM_G726LE, MKBETAG('7','2','6','2') },
55  { AV_CODEC_ID_NONE, 0 },
56 };
57 
58 #if CONFIG_AU_DEMUXER
59 
60 static int au_probe(AVProbeData *p)
61 {
62  if (p->buf[0] == '.' && p->buf[1] == 's' &&
63  p->buf[2] == 'n' && p->buf[3] == 'd')
64  return AVPROBE_SCORE_MAX;
65  else
66  return 0;
67 }
68 
69 #define BLOCK_SIZE 1024
70 
71 static int au_read_header(AVFormatContext *s)
72 {
73  int size, data_size = 0;
74  unsigned int tag;
75  AVIOContext *pb = s->pb;
76  unsigned int id, channels, rate;
77  int bps;
78  enum AVCodecID codec;
79  AVStream *st;
80 
81  tag = avio_rl32(pb);
82  if (tag != MKTAG('.', 's', 'n', 'd'))
83  return AVERROR_INVALIDDATA;
84  size = avio_rb32(pb); /* header size */
85  data_size = avio_rb32(pb); /* data size in bytes */
86 
87  if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
88  av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
89  return AVERROR_INVALIDDATA;
90  }
91 
92  id = avio_rb32(pb);
93  rate = avio_rb32(pb);
94  channels = avio_rb32(pb);
95 
96  if (size > 24) {
97  /* skip unused data */
98  avio_skip(pb, size - 24);
99  }
100 
101  codec = ff_codec_get_id(codec_au_tags, id);
102 
103  if (codec == AV_CODEC_ID_NONE) {
104  avpriv_request_sample(s, "unknown or unsupported codec tag: %u", id);
105  return AVERROR_PATCHWELCOME;
106  }
107 
108  bps = av_get_bits_per_sample(codec);
109  if (codec == AV_CODEC_ID_ADPCM_G726LE) {
110  if (id == MKBETAG('7','2','6','2')) {
111  bps = 2;
112  } else {
113  const uint8_t bpcss[] = {4, 0, 3, 5};
114  av_assert0(id >= 23 && id < 23 + 4);
115  bps = bpcss[id - 23];
116  }
117  } else if (!bps) {
118  avpriv_request_sample(s, "Unknown bits per sample");
119  return AVERROR_PATCHWELCOME;
120  }
121 
122  if (channels == 0 || channels >= INT_MAX / (BLOCK_SIZE * bps >> 3)) {
123  av_log(s, AV_LOG_ERROR, "Invalid number of channels %u\n", channels);
124  return AVERROR_INVALIDDATA;
125  }
126 
127  if (rate == 0 || rate > INT_MAX) {
128  av_log(s, AV_LOG_ERROR, "Invalid sample rate: %u\n", rate);
129  return AVERROR_INVALIDDATA;
130  }
131 
132  st = avformat_new_stream(s, NULL);
133  if (!st)
134  return AVERROR(ENOMEM);
136  st->codec->codec_tag = id;
137  st->codec->codec_id = codec;
138  st->codec->channels = channels;
139  st->codec->sample_rate = rate;
141  st->codec->bit_rate = channels * rate * bps;
142  st->codec->block_align = FFMAX(bps * st->codec->channels / 8, 1);
143  if (data_size != AU_UNKNOWN_SIZE)
144  st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
145 
146  st->start_time = 0;
147  avpriv_set_pts_info(st, 64, 1, rate);
148 
149  return 0;
150 }
151 
152 AVInputFormat ff_au_demuxer = {
153  .name = "au",
154  .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
155  .read_probe = au_probe,
156  .read_header = au_read_header,
157  .read_packet = ff_pcm_read_packet,
158  .read_seek = ff_pcm_read_seek,
159  .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
160 };
161 
162 #endif /* CONFIG_AU_DEMUXER */
163 
164 #if CONFIG_AU_MUXER
165 
166 #include "rawenc.h"
167 
168 static int au_write_header(AVFormatContext *s)
169 {
170  AVIOContext *pb = s->pb;
171  AVCodecContext *enc = s->streams[0]->codec;
172 
173  if (s->nb_streams != 1) {
174  av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
175  return AVERROR(EINVAL);
176  }
177 
178  enc->codec_tag = ff_codec_get_tag(codec_au_tags, enc->codec_id);
179  if (!enc->codec_tag) {
180  av_log(s, AV_LOG_ERROR, "unsupported codec\n");
181  return AVERROR(EINVAL);
182  }
183 
184  ffio_wfourcc(pb, ".snd"); /* magic number */
185  avio_wb32(pb, AU_HEADER_SIZE); /* header size */
186  avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
187  avio_wb32(pb, enc->codec_tag); /* codec ID */
188  avio_wb32(pb, enc->sample_rate);
189  avio_wb32(pb, enc->channels);
190  avio_wb64(pb, 0); /* annotation field */
191  avio_flush(pb);
192 
193  return 0;
194 }
195 
196 static int au_write_trailer(AVFormatContext *s)
197 {
198  AVIOContext *pb = s->pb;
199  int64_t file_size = avio_tell(pb);
200 
201  if (s->pb->seekable && file_size < INT32_MAX) {
202  /* update file size */
203  avio_seek(pb, 8, SEEK_SET);
204  avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
205  avio_seek(pb, file_size, SEEK_SET);
206  avio_flush(pb);
207  }
208 
209  return 0;
210 }
211 
212 AVOutputFormat ff_au_muxer = {
213  .name = "au",
214  .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
215  .mime_type = "audio/basic",
216  .extensions = "au",
217  .audio_codec = AV_CODEC_ID_PCM_S16BE,
218  .video_codec = AV_CODEC_ID_NONE,
219  .write_header = au_write_header,
220  .write_packet = ff_raw_write_packet,
221  .write_trailer = au_write_trailer,
222  .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
223  .flags = AVFMT_NOTIMESTAMPS,
224 };
225 
226 #endif /* CONFIG_AU_MUXER */
void avio_wb64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:418
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
enum AVCodecID id
Definition: mxfenc.c:104
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:2821
int64_t bit_rate
the average bitrate
Definition: avcodec.h:1597
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4149
#define AU_HEADER_SIZE
Definition: au.c:39
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:208
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:282
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id)
Definition: utils.c:2811
#define BLOCK_SIZE
Definition: adx.h:53
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
Definition: avcodec.h:2324
Format I/O context.
Definition: avformat.h:1314
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:698
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3805
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1382
uint32_t tag
Definition: movenc.c:1348
ptrdiff_t size
Definition: opengl_enc.c:101
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:442
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2917
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
Definition: avio_internal.h:67
#define av_log(a,...)
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:101
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3006
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:667
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
simple assert() macros that are a bit more flexible than ISO C assert().
#define FFMAX(a, b)
Definition: common.h:94
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:896
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:462
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1370
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:207
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:202
const char * name
Definition: avformat.h:523
static const AVCodecTag codec_au_tags[]
Definition: au.c:41
int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawenc.c:26
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:45
Stream structure.
Definition: avformat.h:877
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:485
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: pcm.c:29
enum AVMediaType codec_type
Definition: avcodec.h:1540
enum AVCodecID codec_id
Definition: avcodec.h:1549
int sample_rate
samples per second
Definition: avcodec.h:2287
AVIOContext * pb
I/O context.
Definition: avformat.h:1356
main external API structure.
Definition: avcodec.h:1532
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1564
This structure contains the data a format has to probe a file.
Definition: avformat.h:460
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:936
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:472
Main libavformat public API header.
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base...
Definition: avformat.h:929
unsigned bps
Definition: movenc.c:1349
#define MKBETAG(a, b, c, d)
Definition: common.h:343
int channels
number of audio channels
Definition: avcodec.h:2288
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:332
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:661
#define MKTAG(a, b, c, d)
Definition: common.h:342
#define AU_UNKNOWN_SIZE
Definition: au.c:37