FFmpeg
mp3dec.c
Go to the documentation of this file.
1 /*
2  * MP3 demuxer
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 "libavutil/opt.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/dict.h"
25 #include "libavutil/mathematics.h"
26 #include "avformat.h"
27 #include "internal.h"
28 #include "avio_internal.h"
29 #include "demux.h"
30 #include "id3v2.h"
31 #include "id3v1.h"
32 #include "replaygain.h"
33 
34 #include "libavcodec/codec_id.h"
35 #include "libavcodec/mpegaudio.h"
37 
38 #define XING_FLAG_FRAMES 0x01
39 #define XING_FLAG_SIZE 0x02
40 #define XING_FLAG_TOC 0x04
41 #define XING_FLAC_QSCALE 0x08
42 
43 #define XING_TOC_COUNT 100
44 
45 
46 typedef struct {
47  AVClass *class;
49  int xing_toc;
50  int start_pad;
51  int end_pad;
52  int usetoc;
53  unsigned frames; /* Total number of frames in file */
54  unsigned header_filesize; /* Total number of bytes in the stream */
55  unsigned frame_duration; /* Frame duration in st->time_base */
56  int is_cbr;
58 
59 enum CheckRet {
62 };
63 
64 static int check(AVIOContext *pb, int64_t pos, uint32_t *header);
65 
66 /* mp3 read */
67 
68 static int mp3_read_probe(const AVProbeData *p)
69 {
70  int max_frames, first_frames = 0;
71  int whole_used = 0;
72  int frames, ret;
73  int framesizes, max_framesizes;
74  uint32_t header;
75  const uint8_t *buf, *buf0, *buf2, *buf3, *end;
76 
77  buf0 = p->buf;
78  end = p->buf + p->buf_size - sizeof(uint32_t);
79  while (buf0 < end && !*buf0)
80  buf0++;
81 
82  max_frames = 0;
83  max_framesizes = 0;
84  buf = buf0;
85 
86  for (; buf < end; buf = buf2+1) {
87  buf2 = buf;
88  for (framesizes = frames = 0; buf2 < end; frames++) {
90  int header_emu = 0;
91  int available;
92 
93  header = AV_RB32(buf2);
95  if (ret != 0)
96  break;
97 
98  available = FFMIN(h.frame_size, end - buf2);
99  for (buf3 = buf2 + 4; buf3 < buf2 + available; buf3++) {
100  uint32_t next_sync = AV_RB32(buf3);
101  header_emu += (next_sync & MP3_MASK) == (header & MP3_MASK);
102  }
103  if (header_emu > 2)
104  break;
105  framesizes += h.frame_size;
106  if (available < h.frame_size) {
107  frames++;
108  break;
109  }
110  buf2 += h.frame_size;
111  }
112  max_frames = FFMAX(max_frames, frames);
113  max_framesizes = FFMAX(max_framesizes, framesizes);
114  if (buf == buf0) {
115  first_frames= frames;
116  if (buf2 == end + sizeof(uint32_t))
117  whole_used = 1;
118  }
119  }
120  // keep this in sync with ac3 probe, both need to avoid
121  // issues with MPEG-files!
122  if (first_frames>=7) return AVPROBE_SCORE_EXTENSION + 1;
123  else if (max_frames>200 && p->buf_size < 2*max_framesizes)return AVPROBE_SCORE_EXTENSION;
124  else if (max_frames>=4 && p->buf_size < 2*max_framesizes) return AVPROBE_SCORE_EXTENSION / 2;
125  else if (ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
127  else if (first_frames > 1 && whole_used) return 5;
128  else if (max_frames>=1 && p->buf_size < 10*max_framesizes) return 1;
129  else return 0;
130  //mpegps_mp3_unrecognized_format.mpg has max_frames=3
131 }
132 
134 {
135  int i;
136  MP3DecContext *mp3 = s->priv_data;
137  int fast_seek = s->flags & AVFMT_FLAG_FAST_SEEK;
138  int fill_index = (mp3->usetoc || fast_seek) && duration > 0;
139 
140  if (!filesize &&
141  (filesize = avio_size(s->pb)) <= 0) {
142  av_log(s, AV_LOG_WARNING, "Cannot determine file size, skipping TOC table.\n");
143  fill_index = 0;
144  filesize = 0;
145  }
146 
147  for (i = 0; i < XING_TOC_COUNT; i++) {
148  uint8_t b = avio_r8(s->pb);
149  if (fill_index)
150  av_add_index_entry(s->streams[0],
151  av_rescale(b, filesize, 256),
153  0, 0, AVINDEX_KEYFRAME);
154  }
155  if (fill_index)
156  mp3->xing_toc = 1;
157 }
158 
160  MPADecodeHeader *c, uint32_t spf)
161 {
162 #define LAST_BITS(k, n) ((k) & ((1 << (n)) - 1))
163 #define MIDDLE_BITS(k, m, n) LAST_BITS((k) >> (m), ((n) - (m) + 1))
164 
165  FFStream *const sti = ffstream(st);
166  uint16_t crc;
167  uint32_t v;
168 
169  char version[10];
170 
171  uint32_t peak = 0;
172  int32_t r_gain = INT32_MIN, a_gain = INT32_MIN;
173 
174  MP3DecContext *mp3 = s->priv_data;
175  static const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
176  uint64_t fsize = avio_size(s->pb);
177  int64_t pos = avio_tell(s->pb);
178  fsize = fsize >= pos ? fsize - pos : 0;
179 
180  /* Check for Xing / Info tag */
181  avio_skip(s->pb, xing_offtbl[c->lsf == 1][c->nb_channels == 1]);
182  v = avio_rb32(s->pb);
183  mp3->is_cbr = v == MKBETAG('I', 'n', 'f', 'o');
184  if (v != MKBETAG('X', 'i', 'n', 'g') && !mp3->is_cbr)
185  return;
186 
187  v = avio_rb32(s->pb);
188  if (v & XING_FLAG_FRAMES)
189  mp3->frames = avio_rb32(s->pb);
190  if (v & XING_FLAG_SIZE)
191  mp3->header_filesize = avio_rb32(s->pb);
192  if (fsize && mp3->header_filesize) {
193  uint64_t min, delta;
194  min = FFMIN(fsize, mp3->header_filesize);
195  delta = FFMAX(fsize, mp3->header_filesize) - min;
196  if (fsize > mp3->header_filesize && delta > min >> 4) {
197  mp3->frames = 0;
199  "invalid concatenated file detected - using bitrate for duration\n");
200  } else if (delta > min >> 4) {
202  "filesize and duration do not match (growing file?)\n");
203  }
204  }
205  if (v & XING_FLAG_TOC)
207  (AVRational){spf, c->sample_rate},
208  st->time_base));
209  /* VBR quality */
210  if (v & XING_FLAC_QSCALE)
211  avio_rb32(s->pb);
212 
213  /* Encoder short version string */
214  memset(version, 0, sizeof(version));
215  avio_read(s->pb, version, 9);
216 
217  /* Info Tag revision + VBR method */
218  avio_r8(s->pb);
219 
220  /* Lowpass filter value */
221  avio_r8(s->pb);
222 
223  /* ReplayGain peak */
224  v = avio_rb32(s->pb);
225  peak = av_rescale(v, 100000, 1 << 23);
226 
227  /* Radio ReplayGain */
228  v = avio_rb16(s->pb);
229 
230  if (MIDDLE_BITS(v, 13, 15) == 1) {
231  r_gain = MIDDLE_BITS(v, 0, 8) * 10000;
232 
233  if (v & (1 << 9))
234  r_gain *= -1;
235  }
236 
237  /* Audiophile ReplayGain */
238  v = avio_rb16(s->pb);
239 
240  if (MIDDLE_BITS(v, 13, 15) == 2) {
241  a_gain = MIDDLE_BITS(v, 0, 8) * 10000;
242 
243  if (v & (1 << 9))
244  a_gain *= -1;
245  }
246 
247  /* Encoding flags + ATH Type */
248  avio_r8(s->pb);
249 
250  /* if ABR {specified bitrate} else {minimal bitrate} */
251  avio_r8(s->pb);
252 
253  /* Encoder delays */
254  v = avio_rb24(s->pb);
255  if (AV_RB32(version) == MKBETAG('L', 'A', 'M', 'E')
256  || AV_RB32(version) == MKBETAG('L', 'a', 'v', 'f')
257  || AV_RB32(version) == MKBETAG('L', 'a', 'v', 'c')
258  ) {
259 
260  mp3->start_pad = v>>12;
261  mp3-> end_pad = v&4095;
262  sti->start_skip_samples = mp3->start_pad + 528 + 1;
263  if (mp3->frames) {
264  sti->first_discard_sample = -mp3->end_pad + 528 + 1 + mp3->frames * (int64_t)spf;
265  sti->last_discard_sample = mp3->frames * (int64_t)spf;
266  }
267  if (!st->start_time)
269  (AVRational){1, c->sample_rate},
270  st->time_base);
271  av_log(s, AV_LOG_DEBUG, "pad %d %d\n", mp3->start_pad, mp3-> end_pad);
272  }
273 
274  /* Misc */
275  avio_r8(s->pb);
276 
277  /* MP3 gain */
278  avio_r8(s->pb);
279 
280  /* Preset and surround info */
281  avio_rb16(s->pb);
282 
283  /* Music length */
284  avio_rb32(s->pb);
285 
286  /* Music CRC */
287  avio_rb16(s->pb);
288 
289  /* Info Tag CRC */
290  crc = ffio_get_checksum(s->pb);
291  v = avio_rb16(s->pb);
292 
293  if (v == crc) {
294  ff_replaygain_export_raw(st, r_gain, peak, a_gain, 0);
295  av_dict_set(&st->metadata, "encoder", version, 0);
296  }
297 }
298 
300 {
301  uint32_t v;
302  MP3DecContext *mp3 = s->priv_data;
303 
304  /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
305  avio_seek(s->pb, base + 4 + 32, SEEK_SET);
306  v = avio_rb32(s->pb);
307  if (v == MKBETAG('V', 'B', 'R', 'I')) {
308  /* Check tag version */
309  if (avio_rb16(s->pb) == 1) {
310  /* skip delay and quality */
311  avio_skip(s->pb, 4);
312  mp3->header_filesize = avio_rb32(s->pb);
313  mp3->frames = avio_rb32(s->pb);
314  }
315  }
316 }
317 
318 /**
319  * Try to find Xing/Info/VBRI tags and compute duration from info therein
320  */
322 {
323  uint32_t v, spf;
325  int vbrtag_size = 0;
326  MP3DecContext *mp3 = s->priv_data;
327  int ret;
328 
330 
331  v = avio_rb32(s->pb);
332 
334  if (ret < 0)
335  return ret;
336  else if (ret == 0)
337  vbrtag_size = c.frame_size;
338  if (c.layer != 3)
339  return -1;
340 
341  spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
342 
343  mp3->frames = 0;
344  mp3->header_filesize = 0;
345  mp3->frame_duration = av_rescale_q(spf, (AVRational){1, c.sample_rate}, st->time_base);
346 
347  mp3_parse_info_tag(s, st, &c, spf);
348  mp3_parse_vbri_tag(s, st, base);
349 
350  if (!mp3->frames && !mp3->header_filesize)
351  return -1;
352 
353  /* Skip the vbr tag frame */
354  avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
355 
356  if (mp3->frames) {
357  int64_t full_duration_samples;
358 
359  full_duration_samples = mp3->frames * (int64_t)spf;
360  st->duration = av_rescale_q(full_duration_samples - mp3->start_pad - mp3->end_pad,
361  (AVRational){1, c.sample_rate},
362  st->time_base);
363 
364  if (mp3->header_filesize && !mp3->is_cbr)
365  st->codecpar->bit_rate = av_rescale(mp3->header_filesize, 8 * c.sample_rate,
366  full_duration_samples);
367  }
368 
369  return 0;
370 }
371 
373 {
374  FFFormatContext *const si = ffformatcontext(s);
375  MP3DecContext *mp3 = s->priv_data;
376  AVStream *st;
377  FFStream *sti;
378  int64_t off;
379  int ret;
380  int i;
381 
382  s->metadata = si->id3v2_meta;
383  si->id3v2_meta = NULL;
384 
385  st = avformat_new_stream(s, NULL);
386  if (!st)
387  return AVERROR(ENOMEM);
388  sti = ffstream(st);
389 
393  st->start_time = 0;
394 
395  // lcm of all mp3 sample rates
396  avpriv_set_pts_info(st, 64, 1, 14112000);
397 
398  ffiocontext(s->pb)->maxsize = -1;
399  off = avio_tell(s->pb);
400 
401  if (!av_dict_count(s->metadata))
402  ff_id3v1_read(s);
403 
404  if (s->pb->seekable & AVIO_SEEKABLE_NORMAL)
405  mp3->filesize = avio_size(s->pb);
406 
407  if (mp3_parse_vbr_tags(s, st, off) < 0)
408  avio_seek(s->pb, off, SEEK_SET);
409 
410  ret = ff_replaygain_export(st, s->metadata);
411  if (ret < 0)
412  return ret;
413 
414  ret = ffio_ensure_seekback(s->pb, 64 * 1024 + MPA_MAX_CODED_FRAME_SIZE + 4);
415  if (ret < 0)
416  return ret;
417 
418  off = avio_tell(s->pb);
419  for (i = 0; i < 64 * 1024; i++) {
420  uint32_t header, header2;
421  int frame_size;
422  frame_size = check(s->pb, off + i, &header);
423  if (frame_size > 0) {
424  ret = check(s->pb, off + i + frame_size, &header2);
425  if (ret >= 0 && (header & MP3_MASK) == (header2 & MP3_MASK))
426  break;
427  } else if (frame_size == CHECK_SEEK_FAILED) {
428  av_log(s, AV_LOG_ERROR, "Failed to find two consecutive MPEG audio frames.\n");
429  return AVERROR_INVALIDDATA;
430  }
431  }
432  if (i == 64 * 1024) {
433  off = avio_seek(s->pb, off, SEEK_SET);
434  } else {
435  av_log(s, i > 0 ? AV_LOG_INFO : AV_LOG_VERBOSE, "Skipping %d bytes of junk at %"PRId64".\n", i, off);
436  off = avio_seek(s->pb, off + i, SEEK_SET);
437  }
438  if (off < 0)
439  return off;
440 
441  // the seek index is relative to the end of the xing vbr headers
442  for (int i = 0; i < sti->nb_index_entries; i++)
443  sti->index_entries[i].pos += off;
444 
445  /* the parameters will be extracted from the compressed bitstream */
446  return 0;
447 }
448 
449 #define MP3_PACKET_SIZE 1024
450 
452 {
453  MP3DecContext *mp3 = s->priv_data;
454  int ret, size;
455  int64_t pos;
456 
458  pos = avio_tell(s->pb);
459  if (mp3->filesize > ID3v1_TAG_SIZE && pos < mp3->filesize)
460  size= FFMIN(size, mp3->filesize - pos);
461 
462  ret = av_get_packet(s->pb, pkt, size);
463  if (ret <= 0) {
464  if(ret<0)
465  return ret;
466  return AVERROR_EOF;
467  }
468 
470  pkt->stream_index = 0;
471 
472  return ret;
473 }
474 
475 #define SEEK_WINDOW 4096
476 
477 static int check(AVIOContext *pb, int64_t pos, uint32_t *ret_header)
478 {
479  int64_t ret = avio_seek(pb, pos, SEEK_SET);
480  uint8_t header_buf[4];
481  unsigned header;
482  MPADecodeHeader sd;
483  if (ret < 0)
484  return CHECK_SEEK_FAILED;
485 
486  ret = avio_read(pb, &header_buf[0], 4);
487  /* We should always find four bytes for a valid mpa header. */
488  if (ret < 4)
489  return CHECK_SEEK_FAILED;
490 
491  header = AV_RB32(&header_buf[0]);
492  if (ff_mpa_check_header(header) < 0)
493  return CHECK_WRONG_HEADER;
494  if (avpriv_mpegaudio_decode_header(&sd, header) == 1)
495  return CHECK_WRONG_HEADER;
496 
497  if (ret_header)
498  *ret_header = header;
499  return sd.frame_size;
500 }
501 
502 static int64_t mp3_sync(AVFormatContext *s, int64_t target_pos, int flags)
503 {
504  int dir = (flags&AVSEEK_FLAG_BACKWARD) ? -1 : 1;
505  int64_t best_pos;
506  int best_score, i, j;
507  int64_t ret;
508 
509  avio_seek(s->pb, FFMAX(target_pos - SEEK_WINDOW, 0), SEEK_SET);
510  ret = avio_seek(s->pb, target_pos, SEEK_SET);
511  if (ret < 0)
512  return ret;
513 
514 #define MIN_VALID 3
515  best_pos = target_pos;
516  best_score = 999;
517  for (i = 0; i < SEEK_WINDOW; i++) {
518  int64_t pos = target_pos + (dir > 0 ? i - SEEK_WINDOW/4 : -i);
519  int64_t candidate = -1;
520  int score = 999;
521 
522  if (pos < 0)
523  continue;
524 
525  for (j = 0; j < MIN_VALID; j++) {
526  ret = check(s->pb, pos, NULL);
527  if (ret < 0) {
528  if (ret == CHECK_WRONG_HEADER) {
529  break;
530  } else if (ret == CHECK_SEEK_FAILED) {
531  av_log(s, AV_LOG_ERROR, "Could not seek to %"PRId64".\n", pos);
532  return AVERROR(EINVAL);
533  }
534  }
535  if ((target_pos - pos)*dir <= 0 && FFABS(MIN_VALID/2-j) < score) {
536  candidate = pos;
537  score = FFABS(MIN_VALID/2-j);
538  }
539  pos += ret;
540  }
541  if (best_score > score && j == MIN_VALID) {
542  best_pos = candidate;
543  best_score = score;
544  if(score == 0)
545  break;
546  }
547  }
548 
549  return avio_seek(s->pb, best_pos, SEEK_SET);
550 }
551 
552 static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
553  int flags)
554 {
555  FFFormatContext *const si = ffformatcontext(s);
556  MP3DecContext *mp3 = s->priv_data;
557  AVIndexEntry *ie, ie1;
558  AVStream *st = s->streams[0];
559  FFStream *const sti = ffstream(st);
560  int64_t best_pos;
561  int fast_seek = s->flags & AVFMT_FLAG_FAST_SEEK;
563 
564  if (filesize <= 0) {
565  int64_t size = avio_size(s->pb);
566  if (size > 0 && size > si->data_offset)
567  filesize = size - si->data_offset;
568  }
569 
570  if (mp3->xing_toc && (mp3->usetoc || (fast_seek && !mp3->is_cbr))) {
571  int64_t ret = av_index_search_timestamp(st, timestamp, flags);
572 
573  // NOTE: The MP3 TOC is not a precise lookup table. Accuracy is worse
574  // for bigger files.
575  av_log(s, AV_LOG_WARNING, "Using MP3 TOC to seek; may be imprecise.\n");
576 
577  if (ret < 0)
578  return ret;
579 
580  ie = &sti->index_entries[ret];
581  } else if (fast_seek && st->duration > 0 && filesize > 0) {
582  if (!mp3->is_cbr)
583  av_log(s, AV_LOG_WARNING, "Using scaling to seek VBR MP3; may be imprecise.\n");
584 
585  ie = &ie1;
586  timestamp = av_clip64(timestamp, 0, st->duration);
587  ie->timestamp = timestamp;
588  ie->pos = av_rescale(timestamp, filesize, st->duration) + si->data_offset;
589  } else {
590  return -1; // generic index code
591  }
592 
593  best_pos = mp3_sync(s, ie->pos, flags);
594  if (best_pos < 0)
595  return best_pos;
596 
597  if (mp3->is_cbr && ie == &ie1 && mp3->frames && mp3->header_filesize > 0) {
598  ie1.timestamp = mp3->frame_duration * av_rescale(best_pos - si->data_offset, mp3->frames, mp3->header_filesize);
599  }
600 
602  return 0;
603 }
604 
605 static const AVOption options[] = {
606  { "usetoc", "use table of contents", offsetof(MP3DecContext, usetoc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM},
607  { NULL },
608 };
609 
610 static const AVClass demuxer_class = {
611  .class_name = "mp3",
612  .item_name = av_default_item_name,
613  .option = options,
614  .version = LIBAVUTIL_VERSION_INT,
615  .category = AV_CLASS_CATEGORY_DEMUXER,
616 };
617 
619  .p.name = "mp3",
620  .p.long_name = NULL_IF_CONFIG_SMALL("MP2/3 (MPEG audio layer 2/3)"),
621  .p.flags = AVFMT_GENERIC_INDEX,
622  .p.extensions = "mp2,mp3,m2a,mpa", /* XXX: use probe */
623  .p.priv_class = &demuxer_class,
624  .p.mime_type = "audio/mpeg",
625  .read_probe = mp3_read_probe,
626  .read_header = mp3_read_header,
627  .read_packet = mp3_read_packet,
628  .read_seek = mp3_seek,
629  .priv_data_size = sizeof(MP3DecContext),
630 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:215
ID3v1_TAG_SIZE
#define ID3v1_TAG_SIZE
Definition: id3v1.h:27
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
xing_offtbl
static const uint8_t xing_offtbl[2][2]
Definition: mp3enc.c:140
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
XING_FLAC_QSCALE
#define XING_FLAC_QSCALE
Definition: mp3dec.c:41
ffiocontext
static av_always_inline FFIOContext * ffiocontext(AVIOContext *ctx)
Definition: avio_internal.h:81
demuxer_class
static const AVClass demuxer_class
Definition: mp3dec.c:610
mp3_read_packet
static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mp3dec.c:451
ffformatcontext
static av_always_inline FFFormatContext * ffformatcontext(AVFormatContext *s)
Definition: internal.h:127
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
ff_replaygain_export
int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
Parse replaygain tags and export them as per-stream side data.
Definition: replaygain.c:94
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
av_dict_count
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition: dict.c:39
MP3DecContext
Definition: mp3dec.c:46
int64_t
long long int64_t
Definition: coverity.c:34
id3v2.h
FFStream::first_discard_sample
int64_t first_discard_sample
If not 0, the first audio sample that should be discarded from the stream.
Definition: internal.h:229
ff_replaygain_export_raw
int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp, int32_t ag, uint32_t ap)
Export already decoded replaygain values as per-stream side data.
Definition: replaygain.c:69
mpegaudiodecheader.h
ff_mp3_demuxer
const FFInputFormat ff_mp3_demuxer
Definition: mp3dec.c:618
ff_id3v1_read
void ff_id3v1_read(AVFormatContext *s)
Read an ID3v1 tag.
Definition: id3v1.c:278
AVOption
AVOption.
Definition: opt.h:429
b
#define b
Definition: input.c:41
MPADecodeHeader
Definition: mpegaudiodecheader.h:47
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:225
base
uint8_t base
Definition: vp3data.h:128
mathematics.h
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:454
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
MP3_MASK
#define MP3_MASK
Definition: mpegaudiodecheader.h:33
id3v1.h
MP3DecContext::frame_duration
unsigned frame_duration
Definition: mp3dec.c:55
avio_size
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:323
avpriv_update_cur_dts
void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp)
Update cur_dts of all streams based on the given timestamp and AVStream.
Definition: seek.c:37
ffio_get_checksum
unsigned long ffio_get_checksum(AVIOContext *s)
Definition: aviobuf.c:583
AVIndexEntry
Definition: avformat.h:602
AVINDEX_KEYFRAME
#define AVINDEX_KEYFRAME
Definition: avformat.h:610
MIDDLE_BITS
#define MIDDLE_BITS(k, m, n)
XING_FLAG_FRAMES
#define XING_FLAG_FRAMES
Definition: mp3dec.c:38
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:868
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:358
av_add_index_entry
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition: seek.c:122
frames
if it could not because there are no more frames
Definition: filter_design.txt:266
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
AV_CODEC_ID_MP3
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: codec_id.h:449
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:807
read_xing_toc
static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
Definition: mp3dec.c:133
av_clip64
#define av_clip64
Definition: common.h:103
MP3DecContext::filesize
int64_t filesize
Definition: mp3dec.c:48
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:761
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
avpriv_mpegaudio_decode_header
int avpriv_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header)
Definition: mpegaudiodecheader.c:34
AV_PKT_FLAG_CORRUPT
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: packet.h:595
SEEK_WINDOW
#define SEEK_WINDOW
Definition: mp3dec.c:475
codec_id.h
duration
int64_t duration
Definition: movenc.c:65
MP3_PACKET_SIZE
#define MP3_PACKET_SIZE
Definition: mp3dec.c:449
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:553
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:453
frame_size
int frame_size
Definition: mxfenc.c:2446
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVIndexEntry::timestamp
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition: avformat.h:604
MP3DecContext::end_pad
int end_pad
Definition: mp3dec.c:51
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:230
FFFormatContext::data_offset
int64_t data_offset
offset of the first packet
Definition: internal.h:89
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
MP3DecContext::xing_toc
int xing_toc
Definition: mp3dec.c:49
XING_FLAG_TOC
#define XING_FLAG_TOC
Definition: mp3dec.c:40
fsize
static int64_t fsize(FILE *f)
Definition: audiomatch.c:29
AV_CLASS_CATEGORY_DEMUXER
@ AV_CLASS_CATEGORY_DEMUXER
Definition: log.h:33
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:74
FFFormatContext
Definition: internal.h:64
FFStream::need_parsing
enum AVStreamParseType need_parsing
Definition: internal.h:325
AVFormatContext
Format I/O context.
Definition: avformat.h:1300
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:771
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVSEEK_FLAG_BACKWARD
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2499
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:75
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:787
NULL
#define NULL
Definition: coverity.c:32
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:239
FFStream::nb_index_entries
int nb_index_entries
Definition: internal.h:190
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
options
Definition: swscale.c:42
AVStream::metadata
AVDictionary * metadata
Definition: avformat.h:828
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
AVPROBE_SCORE_EXTENSION
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:461
FFIOContext::maxsize
int64_t maxsize
max filesize, used to limit allocations
Definition: avio_internal.h:46
FFFormatContext::id3v2_meta
AVDictionary * id3v2_meta
ID3v2 tag useful for MP3 demuxing.
Definition: internal.h:122
MP3DecContext::start_pad
int start_pad
Definition: mp3dec.c:50
mp3_parse_vbr_tags
static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
Try to find Xing/Info/VBRI tags and compute duration from info therein.
Definition: mp3dec.c:321
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
avio_rb24
unsigned int avio_rb24(AVIOContext *s)
Definition: aviobuf.c:754
ff_mpa_check_header
static int ff_mpa_check_header(uint32_t header)
Definition: mpegaudiodecheader.h:62
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:94
FFStream
Definition: internal.h:132
FFStream::last_discard_sample
int64_t last_discard_sample
The sample after last sample that is intended to be discarded after first_discard_sample.
Definition: internal.h:236
mp3_read_header
static int mp3_read_header(AVFormatContext *s)
Definition: mp3dec.c:372
MP3DecContext::frames
unsigned frames
Definition: mp3dec.c:53
size
int size
Definition: twinvq_data.h:10344
CHECK_SEEK_FAILED
@ CHECK_SEEK_FAILED
Definition: mp3dec.c:61
ID3v2_DEFAULT_MAGIC
#define ID3v2_DEFAULT_MAGIC
Default magic bytes for ID3v2 header: "ID3".
Definition: id3v2.h:35
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
AV_RB32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:96
XING_FLAG_SIZE
#define XING_FLAG_SIZE
Definition: mp3dec.c:39
ffio_init_checksum
void ffio_init_checksum(AVIOContext *s, unsigned long(*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum)
Definition: aviobuf.c:591
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:46
header
static const uint8_t header[24]
Definition: sdr2.c:68
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:603
ffio_ensure_seekback
int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
Ensures that the requested seekback buffer size will be available.
Definition: aviobuf.c:1023
XING_TOC_COUNT
#define XING_TOC_COUNT
Definition: mp3dec.c:43
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:545
FFStream::start_skip_samples
int64_t start_skip_samples
If not 0, the number of samples that should be skipped from the start of the stream (the samples are ...
Definition: internal.h:221
version
version
Definition: libkvazaar.c:321
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:220
MP3DecContext::is_cbr
int is_cbr
Definition: mp3dec.c:56
filesize
static int64_t filesize(AVIOContext *pb)
Definition: ffmpeg_mux.c:51
PROBE_BUF_MAX
#define PROBE_BUF_MAX
Definition: internal.h:34
AVFMT_FLAG_FAST_SEEK
#define AVFMT_FLAG_FAST_SEEK
Enable fast, but inaccurate seeks for some formats.
Definition: avformat.h:1470
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
avio_internal.h
available
if no frame is available
Definition: filter_design.txt:166
mp3_parse_info_tag
static void mp3_parse_info_tag(AVFormatContext *s, AVStream *st, MPADecodeHeader *c, uint32_t spf)
Definition: mp3dec.c:159
mp3_seek
static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: mp3dec.c:552
delta
float delta
Definition: vorbis_enc_data.h:430
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
mp3_sync
static int64_t mp3_sync(AVFormatContext *s, int64_t target_pos, int flags)
Definition: mp3dec.c:502
mp3_read_probe
static int mp3_read_probe(const AVProbeData *p)
Definition: mp3dec.c:68
demux.h
ff_crcA001_update
unsigned long ff_crcA001_update(unsigned long checksum, const uint8_t *buf, unsigned int len)
Definition: aviobuf.c:577
av_rescale
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
mpegaudio.h
av_get_packet
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:91
ff_id3v2_tag_len
int ff_id3v2_tag_len(const uint8_t *buf)
Get the length of an ID3v2 tag.
Definition: id3v2.c:159
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:748
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:231
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:80
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:746
CheckRet
CheckRet
Definition: mp3dec.c:59
pos
unsigned int pos
Definition: spdifenc.c:414
avformat.h
dict.h
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:41
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:612
mp3_parse_vbri_tag
static void mp3_parse_vbri_tag(AVFormatContext *s, AVStream *st, int64_t base)
Definition: mp3dec.c:299
MP3DecContext::header_filesize
unsigned header_filesize
Definition: mp3dec.c:54
AVIndexEntry::pos
int64_t pos
Definition: avformat.h:603
AVSTREAM_PARSE_FULL_RAW
@ AVSTREAM_PARSE_FULL_RAW
full parsing and repack with timestamp and position generation by parser for raw this assumes that ea...
Definition: avformat.h:597
AVPacket::stream_index
int stream_index
Definition: packet.h:541
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:318
MP3DecContext::usetoc
int usetoc
Definition: mp3dec.c:52
options
static const AVOption options[]
Definition: mp3dec.c:605
FFStream::index_entries
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: internal.h:188
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:356
check
static int check(AVIOContext *pb, int64_t pos, uint32_t *header)
Definition: mp3dec.c:477
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:516
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:327
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:88
FFInputFormat
Definition: demux.h:42
int32_t
int32_t
Definition: audioconvert.c:56
replaygain.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:482
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:97
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
h
h
Definition: vp9dsp_template.c:2070
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:797
MPA_MAX_CODED_FRAME_SIZE
#define MPA_MAX_CODED_FRAME_SIZE
Definition: mpegaudio.h:40
MIN_VALID
#define MIN_VALID
ff_id3v2_match
int ff_id3v2_match(const uint8_t *buf, const char *magic)
Detect ID3v2 Header.
Definition: id3v2.c:146
av_index_search_timestamp
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition: seek.c:245
CHECK_WRONG_HEADER
@ CHECK_WRONG_HEADER
Definition: mp3dec.c:60
min
float min
Definition: vorbis_enc_data.h:429