mp3enc.c
Go to the documentation of this file.
1 /*
2  * MP3 muxer
3  * Copyright (c) 2003 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 "avformat.h"
23 #include "avio_internal.h"
24 #include "id3v1.h"
25 #include "id3v2.h"
26 #include "rawenc.h"
27 #include "libavutil/avstring.h"
28 #include "libavcodec/mpegaudio.h"
31 #include "libavutil/intreadwrite.h"
32 #include "libavutil/opt.h"
33 #include "libavcodec/mpegaudio.h"
37 #include "libavutil/dict.h"
38 #include "libavutil/avassert.h"
39 
40 static int id3v1_set_string(AVFormatContext *s, const char *key,
41  uint8_t *buf, int buf_size)
42 {
44  if ((tag = av_dict_get(s->metadata, key, NULL, 0)))
45  av_strlcpy(buf, tag->value, buf_size);
46  return !!tag;
47 }
48 
50 {
52  int i, count = 0;
53 
54  memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
55  buf[0] = 'T';
56  buf[1] = 'A';
57  buf[2] = 'G';
58  /* we knowingly overspecify each tag length by one byte to compensate for the mandatory null byte added by av_strlcpy */
59  count += id3v1_set_string(s, "TIT2", buf + 3, 30 + 1); //title
60  count += id3v1_set_string(s, "TPE1", buf + 33, 30 + 1); //author|artist
61  count += id3v1_set_string(s, "TALB", buf + 63, 30 + 1); //album
62  count += id3v1_set_string(s, "TDRL", buf + 93, 4 + 1); //date
63  count += id3v1_set_string(s, "comment", buf + 97, 30 + 1);
64  if ((tag = av_dict_get(s->metadata, "TRCK", NULL, 0))) { //track
65  buf[125] = 0;
66  buf[126] = atoi(tag->value);
67  count++;
68  }
69  buf[127] = 0xFF; /* default to unknown genre */
70  if ((tag = av_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
71  for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
72  if (!av_strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
73  buf[127] = i;
74  count++;
75  break;
76  }
77  }
78  }
79  return count;
80 }
81 
82 #define XING_NUM_BAGS 400
83 #define XING_TOC_SIZE 100
84 // maximum size of the xing frame: offset/Xing/flags/frames/size/TOC
85 #define XING_MAX_SIZE (32 + 4 + 4 + 4 + 4 + XING_TOC_SIZE)
86 
87 typedef struct MP3Context {
88  const AVClass *class;
92 
93  /* xing header */
94  int64_t xing_offset;
97  uint32_t want;
98  uint32_t seen;
99  uint32_t pos;
100  uint64_t bag[XING_NUM_BAGS];
103 
104  /* index of the audio stream */
106  /* number of attached pictures we still need to write */
108 
109  /* audio packets are queued here until we get all the attached pictures */
111 } MP3Context;
112 
113 static const uint8_t xing_offtbl[2][2] = {{32, 17}, {17, 9}};
114 
115 /*
116  * Write an empty XING header and initialize respective data.
117  */
119 {
120  MP3Context *mp3 = s->priv_data;
121  AVCodecContext *codec = s->streams[mp3->audio_stream_idx]->codec;
122  int bitrate_idx;
123  int best_bitrate_idx = -1;
124  int best_bitrate_error= INT_MAX;
125  int xing_offset;
126  int32_t header, mask;
128  int srate_idx, ver = 0, i, channels;
129  int needed;
130  const char *vendor = (codec->flags & CODEC_FLAG_BITEXACT) ? "Lavf" : LIBAVFORMAT_IDENT;
131 
132  if (!s->pb->seekable)
133  return 0;
134 
135  for (i = 0; i < FF_ARRAY_ELEMS(avpriv_mpa_freq_tab); i++) {
136  const uint16_t base_freq = avpriv_mpa_freq_tab[i];
137 
138  if (codec->sample_rate == base_freq) ver = 0x3; // MPEG 1
139  else if (codec->sample_rate == base_freq / 2) ver = 0x2; // MPEG 2
140  else if (codec->sample_rate == base_freq / 4) ver = 0x0; // MPEG 2.5
141  else continue;
142 
143  srate_idx = i;
144  break;
145  }
147  av_log(s, AV_LOG_WARNING, "Unsupported sample rate, not writing Xing header.\n");
148  return -1;
149  }
150 
151  switch (codec->channels) {
152  case 1: channels = MPA_MONO; break;
153  case 2: channels = MPA_STEREO; break;
154  default: av_log(s, AV_LOG_WARNING, "Unsupported number of channels, "
155  "not writing Xing header.\n");
156  return -1;
157  }
158 
159  /* dummy MPEG audio header */
160  header = 0xffU << 24; // sync
161  header |= (0x7 << 5 | ver << 3 | 0x1 << 1 | 0x1) << 16; // sync/audio-version/layer 3/no crc*/
162  header |= (srate_idx << 2) << 8;
163  header |= channels << 6;
164 
165  for (bitrate_idx=1; bitrate_idx<15; bitrate_idx++) {
166  int error;
167  avpriv_mpegaudio_decode_header(&c, header | (bitrate_idx << (4+8)));
168  error= FFABS(c.bit_rate - codec->bit_rate);
169  if(error < best_bitrate_error){
170  best_bitrate_error= error;
171  best_bitrate_idx = bitrate_idx;
172  }
173  }
174  av_assert0(best_bitrate_idx >= 0);
175 
176  for (bitrate_idx= best_bitrate_idx;; bitrate_idx++) {
177  if (15 == bitrate_idx)
178  return -1;
179  mask = bitrate_idx << (4+8);
180  header |= mask;
181  avpriv_mpegaudio_decode_header(&c, header);
182  xing_offset=xing_offtbl[c.lsf == 1][c.nb_channels == 1];
183  needed = 4 // header
184  + xing_offset
185  + 4 // xing tag
186  + 4 // frames/size/toc flags
187  + 4 // frames
188  + 4 // size
189  + XING_TOC_SIZE // toc
190  + 24
191  ;
192 
193  if (needed <= c.frame_size)
194  break;
195  header &= ~mask;
196  }
197 
198  avio_wb32(s->pb, header);
199 
200  ffio_fill(s->pb, 0, xing_offset);
201  mp3->xing_offset = avio_tell(s->pb);
202  ffio_wfourcc(s->pb, "Xing");
203  avio_wb32(s->pb, 0x01 | 0x02 | 0x04); // frames / size / TOC
204 
205  mp3->size = c.frame_size;
206  mp3->want=1;
207  mp3->seen=0;
208  mp3->pos=0;
209 
210  avio_wb32(s->pb, 0); // frames
211  avio_wb32(s->pb, 0); // size
212 
213  // toc
214  for (i = 0; i < XING_TOC_SIZE; ++i)
215  avio_w8(s->pb, (uint8_t)(255 * i / XING_TOC_SIZE));
216 
217  for (i = 0; i < strlen(vendor); ++i)
218  avio_w8(s->pb, vendor[i]);
219  for (; i < 21; ++i)
220  avio_w8(s->pb, 0);
221  avio_wb24(s->pb, FFMAX(codec->delay - 528 - 1, 0)<<12);
222 
223  ffio_fill(s->pb, 0, c.frame_size - needed);
224 
225  return 0;
226 }
227 
228 /*
229  * Add a frame to XING data.
230  * Following lame's "VbrTag.c".
231  */
233 {
234  int i;
235 
236  mp3->frames++;
237  mp3->seen++;
238  mp3->size += pkt->size;
239 
240  if (mp3->want == mp3->seen) {
241  mp3->bag[mp3->pos] = mp3->size;
242 
243  if (XING_NUM_BAGS == ++mp3->pos) {
244  /* shrink table to half size by throwing away each second bag. */
245  for (i = 1; i < XING_NUM_BAGS; i += 2)
246  mp3->bag[i >> 1] = mp3->bag[i];
247 
248  /* double wanted amount per bag. */
249  mp3->want *= 2;
250  /* adjust current position to half of table size. */
251  mp3->pos = XING_NUM_BAGS / 2;
252  }
253 
254  mp3->seen = 0;
255  }
256 }
257 
259 {
260  MP3Context *mp3 = s->priv_data;
261 
262  if (pkt->data && pkt->size >= 4) {
264  int av_unused base;
265  uint32_t head = AV_RB32(pkt->data);
266 
267  if (ff_mpa_check_header(head) < 0) {
268  av_log(s, AV_LOG_WARNING, "Audio packet of size %d (starting with %08X...) "
269  "is invalid, writing it anyway.\n", pkt->size, head);
270  return ff_raw_write_packet(s, pkt);
271  }
273 
274  if (!mp3->initial_bitrate)
275  mp3->initial_bitrate = c.bit_rate;
276  if ((c.bit_rate == 0) || (mp3->initial_bitrate != c.bit_rate))
277  mp3->has_variable_bitrate = 1;
278 
279 #ifdef FILTER_VBR_HEADERS
280  /* filter out XING and INFO headers. */
281  base = 4 + xing_offtbl[c.lsf == 1][c.nb_channels == 1];
282 
283  if (base + 4 <= pkt->size) {
284  uint32_t v = AV_RB32(pkt->data + base);
285 
286  if (MKBETAG('X','i','n','g') == v || MKBETAG('I','n','f','o') == v)
287  return 0;
288  }
289 
290  /* filter out VBRI headers. */
291  base = 4 + 32;
292 
293  if (base + 4 <= pkt->size && MKBETAG('V','B','R','I') == AV_RB32(pkt->data + base))
294  return 0;
295 #endif
296 
297  if (mp3->xing_offset)
298  mp3_xing_add_frame(mp3, pkt);
299  }
300 
301  return ff_raw_write_packet(s, pkt);
302 }
303 
305 {
306  MP3Context *mp3 = s->priv_data;
307  AVPacketList *pktl;
308  int ret = 0, write = 1;
309 
310  ff_id3v2_finish(&mp3->id3, s->pb);
311  mp3_write_xing(s);
312 
313  while ((pktl = mp3->queue)) {
314  if (write && (ret = mp3_write_audio_packet(s, &pktl->pkt)) < 0)
315  write = 0;
316  av_free_packet(&pktl->pkt);
317  mp3->queue = pktl->next;
318  av_freep(&pktl);
319  }
320  mp3->queue_end = NULL;
321  return ret;
322 }
323 
325 {
326  MP3Context *mp3 = s->priv_data;
327  int i;
328 
329  /* replace "Xing" identification string with "Info" for CBR files. */
330  if (!mp3->has_variable_bitrate) {
331  avio_seek(s->pb, mp3->xing_offset, SEEK_SET);
332  ffio_wfourcc(s->pb, "Info");
333  }
334 
335  avio_seek(s->pb, mp3->xing_offset + 8, SEEK_SET);
336  avio_wb32(s->pb, mp3->frames);
337  avio_wb32(s->pb, mp3->size);
338 
339  avio_w8(s->pb, 0); // first toc entry has to be zero.
340 
341  for (i = 1; i < XING_TOC_SIZE; ++i) {
342  int j = i * mp3->pos / XING_TOC_SIZE;
343  int seek_point = 256LL * mp3->bag[j] / mp3->size;
344  avio_w8(s->pb, FFMIN(seek_point, 255));
345  }
346 
347  avio_seek(s->pb, 0, SEEK_END);
348 }
349 
351 {
353  MP3Context *mp3 = s->priv_data;
354 
355  if (mp3->pics_to_write) {
356  av_log(s, AV_LOG_WARNING, "No packets were sent for some of the "
357  "attached pictures.\n");
358  mp3_queue_flush(s);
359  }
360 
361  /* write the id3v1 tag */
362  if (mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
363  avio_write(s->pb, buf, ID3v1_TAG_SIZE);
364  }
365 
366  if (mp3->xing_offset)
367  mp3_update_xing(s);
368 
369  return 0;
370 }
371 
372 static int query_codec(enum AVCodecID id, int std_compliance)
373 {
375  while(cm->id != AV_CODEC_ID_NONE) {
376  if(id == cm->id)
377  return MKTAG('A', 'P', 'I', 'C');
378  cm++;
379  }
380  return -1;
381 }
382 
383 #if CONFIG_MP2_MUXER
384 AVOutputFormat ff_mp2_muxer = {
385  .name = "mp2",
386  .long_name = NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"),
387  .mime_type = "audio/x-mpeg",
388  .extensions = "mp2,m2a",
389  .audio_codec = AV_CODEC_ID_MP2,
390  .video_codec = AV_CODEC_ID_NONE,
391  .write_packet = ff_raw_write_packet,
392  .flags = AVFMT_NOTIMESTAMPS,
393 };
394 #endif
395 
396 #if CONFIG_MP3_MUXER
397 
398 static const AVOption options[] = {
399  { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
400  offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
401  { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
402  offsetof(MP3Context, write_id3v1), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
403  { NULL },
404 };
405 
406 static const AVClass mp3_muxer_class = {
407  .class_name = "MP3 muxer",
408  .item_name = av_default_item_name,
409  .option = options,
410  .version = LIBAVUTIL_VERSION_INT,
411 };
412 
413 static int mp3_write_packet(AVFormatContext *s, AVPacket *pkt)
414 {
415  MP3Context *mp3 = s->priv_data;
416 
417  if (pkt->stream_index == mp3->audio_stream_idx) {
418  if (mp3->pics_to_write) {
419  /* buffer audio packets until we get all the pictures */
420  AVPacketList *pktl = av_mallocz(sizeof(*pktl));
421  if (!pktl)
422  return AVERROR(ENOMEM);
423 
424  pktl->pkt = *pkt;
425  pktl->pkt.buf = av_buffer_ref(pkt->buf);
426  if (!pktl->pkt.buf) {
427  av_freep(&pktl);
428  return AVERROR(ENOMEM);
429  }
430 
431  if (mp3->queue_end)
432  mp3->queue_end->next = pktl;
433  else
434  mp3->queue = pktl;
435  mp3->queue_end = pktl;
436  } else
437  return mp3_write_audio_packet(s, pkt);
438  } else {
439  int ret;
440 
441  /* warn only once for each stream */
442  if (s->streams[pkt->stream_index]->nb_frames == 1) {
443  av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
444  " ignoring.\n", pkt->stream_index);
445  }
446  if (!mp3->pics_to_write || s->streams[pkt->stream_index]->nb_frames >= 1)
447  return 0;
448 
449  if ((ret = ff_id3v2_write_apic(s, &mp3->id3, pkt)) < 0)
450  return ret;
451  mp3->pics_to_write--;
452 
453  /* flush the buffered audio packets */
454  if (!mp3->pics_to_write &&
455  (ret = mp3_queue_flush(s)) < 0)
456  return ret;
457  }
458 
459  return 0;
460 }
461 
462 /**
463  * Write an ID3v2 header at beginning of stream
464  */
465 
466 static int mp3_write_header(struct AVFormatContext *s)
467 {
468  MP3Context *mp3 = s->priv_data;
469  int ret, i;
470 
471  /* check the streams -- we want exactly one audio and arbitrary number of
472  * video (attached pictures) */
473  mp3->audio_stream_idx = -1;
474  for (i = 0; i < s->nb_streams; i++) {
475  AVStream *st = s->streams[i];
476  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
477  if (mp3->audio_stream_idx >= 0 || st->codec->codec_id != AV_CODEC_ID_MP3) {
478  av_log(s, AV_LOG_ERROR, "Invalid audio stream. Exactly one MP3 "
479  "audio stream is required.\n");
480  return AVERROR(EINVAL);
481  }
482  mp3->audio_stream_idx = i;
483  } else if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO) {
484  av_log(s, AV_LOG_ERROR, "Only audio streams and pictures are allowed in MP3.\n");
485  return AVERROR(EINVAL);
486  }
487  }
488  if (mp3->audio_stream_idx < 0) {
489  av_log(s, AV_LOG_ERROR, "No audio stream present.\n");
490  return AVERROR(EINVAL);
491  }
492  mp3->pics_to_write = s->nb_streams - 1;
493 
495  ret = ff_id3v2_write_metadata(s, &mp3->id3);
496  if (ret < 0)
497  return ret;
498 
499  if (!mp3->pics_to_write) {
500  ff_id3v2_finish(&mp3->id3, s->pb);
501  mp3_write_xing(s);
502  }
503 
504  return 0;
505 }
506 
507 AVOutputFormat ff_mp3_muxer = {
508  .name = "mp3",
509  .long_name = NULL_IF_CONFIG_SMALL("MP3 (MPEG audio layer 3)"),
510  .mime_type = "audio/x-mpeg",
511  .extensions = "mp3",
512  .priv_data_size = sizeof(MP3Context),
513  .audio_codec = AV_CODEC_ID_MP3,
514  .video_codec = AV_CODEC_ID_PNG,
515  .write_header = mp3_write_header,
516  .write_packet = mp3_write_packet,
520  .priv_class = &mp3_muxer_class,
521 };
522 #endif
#define MPA_STEREO
Definition: mpegaudio.h:45
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
float v
const char * s
Definition: avisynth_c.h:668
#define XING_NUM_BAGS
Definition: mp3enc.c:82
struct MP3Context MP3Context
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:242
AVOption.
Definition: opt.h:251
void ff_id3v2_start(ID3v2EncContext *id3, AVIOContext *pb, int id3v2_version, const char *magic)
Initialize an ID3v2 tag.
Definition: id3v2enc.c:151
static int mp3_write_audio_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mp3enc.c:258
av_default_item_name
uint32_t pos
Definition: mp3enc.c:99
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:154
static int write_packet(AVFormatContext *s, AVPacket *pkt)
#define ID3v2_DEFAULT_MAGIC
Default magic bytes for ID3v2 header: "ID3".
Definition: id3v2.h:35
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:199
#define FF_ARRAY_ELEMS(a)
AVDictionaryEntry * av_dict_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
mpeg audio layer common tables.
uint64_t bag[XING_NUM_BAGS]
Definition: mp3enc.c:100
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
Format I/O context.
Definition: avformat.h:944
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:55
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
Public dictionary API.
static void mp3_update_xing(AVFormatContext *s)
Definition: mp3enc.c:324
int32_t size
Definition: mp3enc.c:96
static int mp3_write_trailer(struct AVFormatContext *s)
Definition: mp3enc.c:350
uint8_t
AVOptions.
AVPacket pkt
Definition: avformat.h:1280
#define AV_RB32
static AVPacket pkt
Definition: demuxing.c:56
const uint16_t avpriv_mpa_freq_tab[3]
Definition: mpegaudiodata.c:40
AVStream ** streams
Definition: avformat.h:992
uint8_t * data
int avpriv_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header)
uint32_t tag
Definition: movenc.c:894
static const uint8_t xing_offtbl[2][2]
Definition: mp3enc.c:113
enum AVCodecID id
#define CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:248
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:173
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
Definition: avio_internal.h:50
const OptionDef options[]
Definition: ffserver.c:4697
static int write_trailer(AVFormatContext *s)
#define cm
Definition: dvbsubdec.c:34
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
Definition: opt.h:281
AVPacketList * queue_end
Definition: mp3enc.c:110
#define U(x)
AVCodecID
Identify the syntax and semantics of the bitstream.
AVDictionary * metadata
Definition: avformat.h:1092
int64_t xing_offset
Definition: mp3enc.c:94
static const uint16_t mask[17]
Definition: lzw.c:37
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
preferred ID for decoding MPEG audio layer 1, 2 or 3
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
int flags
CODEC_FLAG_*.
simple assert() macros that are a bit more flexible than ISO C assert().
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
uint32_t want
Definition: mp3enc.c:97
static int ff_mpa_check_header(uint32_t header)
void ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb)
Finalize an opened ID3v2 tag.
Definition: id3v2enc.c:264
#define FFMAX(a, b)
Definition: common.h:56
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:82
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
int initial_bitrate
Definition: mp3enc.c:101
const CodecMime ff_id3v2_mime_tags[]
Definition: id3v2.c:127
unsigned int nb_streams
A list of all streams in the file.
Definition: avformat.h:991
static int mp3_write_xing(AVFormatContext *s)
Definition: mp3enc.c:118
#define LIBAVFORMAT_IDENT
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:117
int bit_rate
the average bitrate
int ff_id3v2_write_metadata(AVFormatContext *s, ID3v2EncContext *id3)
Convert and write all global metadata from s into an ID3v2 tag.
Definition: id3v2enc.c:165
void ffio_fill(AVIOContext *s, int b, int count)
Definition: aviobuf.c:159
int id3v2_version
Definition: mp3enc.c:90
#define FFMIN(a, b)
Definition: common.h:58
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:212
ret
Definition: avfilter.c:821
void avio_wb24(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:385
const char * name
Definition: avformat.h:378
static int query_codec(enum AVCodecID id, int std_compliance)
Definition: mp3enc.c:372
int32_t
AVPacketList * queue
Definition: mp3enc.c:110
#define FFABS(a)
Definition: common.h:53
int ff_raw_write_packet(AVFormatContext *s, AVPacket *pkt)
int write_id3v1
Definition: mp3enc.c:91
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
Stream structure.
Definition: avformat.h:643
int pics_to_write
Definition: mp3enc.c:107
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:352
NULL
Definition: eval.c:55
int has_variable_bitrate
Definition: mp3enc.c:102
int audio_stream_idx
Definition: mp3enc.c:105
enum AVMediaType codec_type
enum AVCodecID codec_id
int sample_rate
samples per second
AVIOContext * pb
I/O context.
Definition: avformat.h:977
int32_t frames
Definition: mp3enc.c:95
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:151
main external API structure.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
void * buf
Definition: avisynth_c.h:594
Describe the class of an AVClass context structure.
Definition: log.h:50
synthesis window for stochastic i
#define MPA_MONO
Definition: mpegaudio.h:48
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer 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.Buffer references ownership and permissions
static int id3v1_set_string(AVFormatContext *s, const char *key, uint8_t *buf, int buf_size)
Definition: mp3enc.c:40
static int flags
Definition: cpu.c:23
int ff_id3v2_write_apic(AVFormatContext *s, ID3v2EncContext *id3, AVPacket *pkt)
Write an attached picture from pkt into an ID3v2 tag.
Definition: id3v2enc.c:199
MPEG Audio header decoder.
static int mp3_queue_flush(AVFormatContext *s)
Definition: mp3enc.c:304
Main libavformat public API header.
struct AVPacketList * next
Definition: avformat.h:1281
static double c[64]
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
mpeg audio declarations for both encoder and decoder.
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:698
#define MKBETAG(a, b, c, d)
Definition: common.h:283
#define XING_TOC_SIZE
Definition: mp3enc.c:83
char * value
Definition: dict.h:82
int channels
number of audio channels
void * priv_data
Format private data.
Definition: avformat.h:964
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:470
The official guide to swscale for confused that consecutive non overlapping rectangles of slice_bottom special converter These generally are unscaled converters of common like for each output line the vertical scaler pulls lines from a ring buffer When the ring buffer does not contain the wanted then it is pulled from the input slice through the input converter and horizontal scaler The result is also stored in the ring buffer to serve future vertical scaler requests When no more output can be generated because lines from a future slice would be needed
Definition: swscale.txt:33
#define ID3v1_TAG_SIZE
Definition: id3v1.h:27
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:299
void INT64 INT64 count
Definition: avisynth_c.h:594
static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
Definition: mp3enc.c:49
#define MKTAG(a, b, c, d)
Definition: common.h:282
#define ID3v1_GENRE_MAX
Definition: id3v1.h:29
const char *const ff_id3v1_genre_str[ID3v1_GENRE_MAX+1]
ID3v1 genres.
Definition: id3v1.c:27
This structure stores compressed data.
int delay
Codec delay.
ID3v2EncContext id3
Definition: mp3enc.c:89
#define av_unused
Definition: attributes.h:114
static void mp3_xing_add_frame(MP3Context *mp3, AVPacket *pkt)
Definition: mp3enc.c:232
uint32_t seen
Definition: mp3enc.c:98