FFmpeg
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_DEFAULT_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(const 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 static int au_read_annotation(AVFormatContext *s, int size)
70 {
71  static const char * keys[] = {
72  "title",
73  "artist",
74  "album",
75  "track",
76  "genre",
77  NULL };
78  AVIOContext *pb = s->pb;
79  enum { PARSE_KEY, PARSE_VALUE, PARSE_FINISHED } state = PARSE_KEY;
80  char c;
81  AVBPrint bprint;
82  char * key = NULL;
83  char * value = NULL;
84  int i;
85 
87 
88  while (size-- > 0) {
89  if (avio_feof(pb)) {
90  av_bprint_finalize(&bprint, NULL);
91  av_freep(&key);
92  return AVERROR_EOF;
93  }
94  c = avio_r8(pb);
95  switch(state) {
96  case PARSE_KEY:
97  if (c == '\0') {
98  state = PARSE_FINISHED;
99  } else if (c == '=') {
100  av_bprint_finalize(&bprint, &key);
102  state = PARSE_VALUE;
103  } else {
104  av_bprint_chars(&bprint, c, 1);
105  }
106  break;
107  case PARSE_VALUE:
108  if (c == '\0' || c == '\n') {
109  if (av_bprint_finalize(&bprint, &value) != 0) {
110  av_log(s, AV_LOG_ERROR, "Memory error while parsing AU metadata.\n");
111  } else {
113  for (i = 0; keys[i] != NULL && key != NULL; i++) {
114  if (av_strcasecmp(keys[i], key) == 0) {
115  av_dict_set(&(s->metadata), keys[i], value, AV_DICT_DONT_STRDUP_VAL);
116  av_freep(&key);
117  value = NULL;
118  }
119  }
120  }
121  av_freep(&key);
122  av_freep(&value);
123  state = (c == '\0') ? PARSE_FINISHED : PARSE_KEY;
124  } else {
125  av_bprint_chars(&bprint, c, 1);
126  }
127  break;
128  case PARSE_FINISHED:
129  break;
130  default:
131  /* should never happen */
132  av_assert0(0);
133  }
134  }
135  av_bprint_finalize(&bprint, NULL);
136  av_freep(&key);
137  return 0;
138 }
139 
140 #define BLOCK_SIZE 1024
141 
142 static int au_read_header(AVFormatContext *s)
143 {
144  int size, data_size = 0;
145  unsigned int tag;
146  AVIOContext *pb = s->pb;
147  unsigned int id, channels, rate;
148  int bps, ba = 0;
149  enum AVCodecID codec;
150  AVStream *st;
151 
152  tag = avio_rl32(pb);
153  if (tag != MKTAG('.', 's', 'n', 'd'))
154  return AVERROR_INVALIDDATA;
155  size = avio_rb32(pb); /* header size */
156  data_size = avio_rb32(pb); /* data size in bytes */
157 
158  if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
159  av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
160  return AVERROR_INVALIDDATA;
161  }
162 
163  id = avio_rb32(pb);
164  rate = avio_rb32(pb);
165  channels = avio_rb32(pb);
166 
167  if (size > 24) {
168  /* parse annotation field to get metadata */
169  au_read_annotation(s, size - 24);
170  }
171 
172  codec = ff_codec_get_id(codec_au_tags, id);
173 
174  if (codec == AV_CODEC_ID_NONE) {
175  avpriv_request_sample(s, "unknown or unsupported codec tag: %u", id);
176  return AVERROR_PATCHWELCOME;
177  }
178 
179  bps = av_get_bits_per_sample(codec);
180  if (codec == AV_CODEC_ID_ADPCM_G726LE) {
181  if (id == MKBETAG('7','2','6','2')) {
182  bps = 2;
183  } else {
184  const uint8_t bpcss[] = {4, 0, 3, 5};
185  av_assert0(id >= 23 && id < 23 + 4);
186  ba = bpcss[id - 23];
187  bps = bpcss[id - 23];
188  }
189  } else if (!bps) {
190  avpriv_request_sample(s, "Unknown bits per sample");
191  return AVERROR_PATCHWELCOME;
192  }
193 
194  if (channels == 0 || channels >= INT_MAX / (BLOCK_SIZE * bps >> 3)) {
195  av_log(s, AV_LOG_ERROR, "Invalid number of channels %u\n", channels);
196  return AVERROR_INVALIDDATA;
197  }
198 
199  if (rate == 0 || rate > INT_MAX) {
200  av_log(s, AV_LOG_ERROR, "Invalid sample rate: %u\n", rate);
201  return AVERROR_INVALIDDATA;
202  }
203 
204  st = avformat_new_stream(s, NULL);
205  if (!st)
206  return AVERROR(ENOMEM);
208  st->codecpar->codec_tag = id;
209  st->codecpar->codec_id = codec;
210  st->codecpar->channels = channels;
211  st->codecpar->sample_rate = rate;
213  st->codecpar->bit_rate = channels * rate * bps;
214  st->codecpar->block_align = ba ? ba : FFMAX(bps * st->codecpar->channels / 8, 1);
215  if (data_size != AU_UNKNOWN_SIZE)
216  st->duration = (((int64_t)data_size)<<3) / (st->codecpar->channels * (int64_t)bps);
217 
218  st->start_time = 0;
219  avpriv_set_pts_info(st, 64, 1, rate);
220 
221  return 0;
222 }
223 
225  .name = "au",
226  .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
227  .read_probe = au_probe,
228  .read_header = au_read_header,
229  .read_packet = ff_pcm_read_packet,
230  .read_seek = ff_pcm_read_seek,
231  .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
232 };
233 
234 #endif /* CONFIG_AU_DEMUXER */
235 
236 #if CONFIG_AU_MUXER
237 
238 typedef struct AUContext {
239  uint32_t header_size;
240 } AUContext;
241 
242 #include "rawenc.h"
243 
244 static int au_get_annotations(AVFormatContext *s, char **buffer)
245 {
246  static const char * keys[] = {
247  "Title",
248  "Artist",
249  "Album",
250  "Track",
251  "Genre",
252  NULL };
253  int i;
254  int cnt = 0;
255  AVDictionary *m = s->metadata;
256  AVDictionaryEntry *t = NULL;
257  AVBPrint bprint;
258 
260 
261  for (i = 0; keys[i] != NULL; i++) {
262  t = av_dict_get(m, keys[i], NULL, 0);
263  if (t != NULL) {
264  if (cnt++)
265  av_bprint_chars(&bprint, '\n', 1);
266  av_bprint_append_data(&bprint, keys[i], strlen(keys[i]));
267  av_bprint_chars(&bprint, '=', 1);
268  av_bprint_append_data(&bprint, t->value, strlen(t->value));
269  }
270  }
271  /* pad with 0's */
272  av_bprint_append_data(&bprint, "\0\0\0\0\0\0\0\0", 8);
273  return av_bprint_finalize(&bprint, buffer);
274 }
275 
276 static int au_write_header(AVFormatContext *s)
277 {
278  int ret;
279  AUContext *au = s->priv_data;
280  AVIOContext *pb = s->pb;
281  AVCodecParameters *par = s->streams[0]->codecpar;
282  char *annotations = NULL;
283 
284  au->header_size = AU_DEFAULT_HEADER_SIZE;
285 
286  if (s->nb_streams != 1) {
287  av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
288  return AVERROR(EINVAL);
289  }
290 
292  if (!par->codec_tag) {
293  av_log(s, AV_LOG_ERROR, "unsupported codec\n");
294  return AVERROR(EINVAL);
295  }
296 
297  if (av_dict_count(s->metadata) > 0) {
298  ret = au_get_annotations(s, &annotations);
299  if (ret < 0)
300  return ret;
301  if (annotations != NULL) {
302  au->header_size = (24 + strlen(annotations) + 8) & ~7;
303  if (au->header_size < AU_DEFAULT_HEADER_SIZE)
304  au->header_size = AU_DEFAULT_HEADER_SIZE;
305  }
306  }
307  ffio_wfourcc(pb, ".snd"); /* magic number */
308  avio_wb32(pb, au->header_size); /* header size */
309  avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
310  avio_wb32(pb, par->codec_tag); /* codec ID */
311  avio_wb32(pb, par->sample_rate);
312  avio_wb32(pb, par->channels);
313  if (annotations != NULL) {
314  avio_write(pb, annotations, au->header_size - 24);
315  av_freep(&annotations);
316  } else {
317  avio_wb64(pb, 0); /* annotation field */
318  }
319  avio_flush(pb);
320 
321  return 0;
322 }
323 
324 static int au_write_trailer(AVFormatContext *s)
325 {
326  AVIOContext *pb = s->pb;
327  AUContext *au = s->priv_data;
328  int64_t file_size = avio_tell(pb);
329 
330  if ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) && file_size < INT32_MAX) {
331  /* update file size */
332  avio_seek(pb, 8, SEEK_SET);
333  avio_wb32(pb, (uint32_t)(file_size - au->header_size));
334  avio_seek(pb, file_size, SEEK_SET);
335  avio_flush(pb);
336  }
337 
338  return 0;
339 }
340 
342  .name = "au",
343  .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
344  .mime_type = "audio/basic",
345  .extensions = "au",
346  .priv_data_size = sizeof(AUContext),
347  .audio_codec = AV_CODEC_ID_PCM_S16BE,
348  .video_codec = AV_CODEC_ID_NONE,
349  .write_header = au_write_header,
351  .write_trailer = au_write_trailer,
352  .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
353  .flags = AVFMT_NOTIMESTAMPS,
354 };
355 
356 #endif /* CONFIG_AU_MUXER */
AV_BPRINT_SIZE_UNLIMITED
#define AV_BPRINT_SIZE_UNLIMITED
AV_CODEC_ID_PCM_F32BE
@ AV_CODEC_ID_PCM_F32BE
Definition: avcodec.h:483
codec_au_tags
static const AVCodecTag codec_au_tags[]
Definition: au.c:41
AVOutputFormat::name
const char * name
Definition: avformat.h:496
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
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4480
pcm.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3953
ffio_wfourcc
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
Definition: avio_internal.h:58
av_bprint_finalize
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
av_bprint_init
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3949
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:55
MKTAG
#define MKTAG(a, b, c, d)
Definition: common.h:366
av_dict_count
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition: dict.c:35
AVFMT_NOTIMESTAMPS
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:467
av_strcasecmp
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
AV_CODEC_ID_ADPCM_G722
@ AV_CODEC_ID_ADPCM_G722
Definition: avcodec.h:530
channels
channels
Definition: aptx.c:30
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3961
AVDictionary
Definition: dict.c:30
av_bprint_append_data
void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
Append data to a print buffer.
Definition: bprint.c:158
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:458
AVCodecParameters::channels
int channels
Audio only.
Definition: avcodec.h:4063
AV_CODEC_ID_PCM_S16BE
@ AV_CODEC_ID_PCM_S16BE
Definition: avcodec.h:464
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:557
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:919
AV_DICT_DONT_STRDUP_VAL
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:74
AV_CODEC_ID_PCM_S8
@ AV_CODEC_ID_PCM_S8
Definition: avcodec.h:467
avassert.h
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:800
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
state
static struct @313 state
AVInputFormat
Definition: avformat.h:640
AVCodecTag
Definition: internal.h:44
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:40
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:448
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
ff_raw_write_packet
int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawenc.c:29
AV_CODEC_ID_PCM_MULAW
@ AV_CODEC_ID_PCM_MULAW
Definition: avcodec.h:469
key
const char * key
Definition: hwcontext_opencl.c:168
AVFormatContext
Format I/O context.
Definition: avformat.h:1342
AV_CODEC_ID_PCM_ALAW
@ AV_CODEC_ID_PCM_ALAW
Definition: avcodec.h:470
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1017
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
AU_DEFAULT_HEADER_SIZE
#define AU_DEFAULT_HEADER_SIZE
Definition: au.c:39
write_trailer
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
ff_au_muxer
AVOutputFormat ff_au_muxer
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:446
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: avcodec.h:4067
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
av_get_bits_per_sample
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:1550
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:769
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
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:188
id
enum AVCodecID id
Definition: extract_extradata_bsf.c:329
ff_codec_get_id
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:3146
FFMAX
#define FFMAX(a, b)
Definition: common.h:94
avpriv_set_pts_info
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:4910
bps
unsigned bps
Definition: movenc.c:1497
size
int size
Definition: twinvq_data.h:11134
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: common.h:367
avio_write
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:218
avio_wb32
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:377
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:638
rawenc.h
write_packet
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
Definition: ffmpeg.c:690
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: avcodec.h:216
AVOutputFormat
Definition: avformat.h:495
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
avio_internal.h
AVCodecParameters::block_align
int block_align
Audio only.
Definition: avcodec.h:4074
AV_CODEC_ID_PCM_F64BE
@ AV_CODEC_ID_PCM_F64BE
Definition: avcodec.h:485
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
AV_CODEC_ID_PCM_S32BE
@ AV_CODEC_ID_PCM_S32BE
Definition: avcodec.h:472
uint8_t
uint8_t
Definition: audio_convert.c:194
ff_pcm_read_packet
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: pcm.c:29
tag
uint32_t tag
Definition: movenc.c:1496
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:870
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:246
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
AV_CODEC_ID_ADPCM_G726LE
@ AV_CODEC_ID_ADPCM_G726LE
Definition: avcodec.h:538
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
buffer
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
Definition: filter_design.txt:49
ff_codec_get_tag
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id)
Definition: utils.c:3136
AU_UNKNOWN_SIZE
#define AU_UNKNOWN_SIZE
Definition: au.c:37
avio_wb64
void avio_wb64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:463
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:3999
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:39
avio_flush
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:238
AVDictionaryEntry
Definition: dict.h:81
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3957
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:3986
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
BLOCK_SIZE
#define BLOCK_SIZE
Definition: adx.h:53
AVDictionaryEntry::value
char * value
Definition: dict.h:83
AVStream::start_time
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition: avformat.h:909
write_header
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:337
AV_CODEC_ID_PCM_S24BE
@ AV_CODEC_ID_PCM_S24BE
Definition: avcodec.h:476
ff_au_demuxer
AVInputFormat ff_au_demuxer
av_bprint_chars
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition: bprint.c:140
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:358