summaryrefslogtreecommitdiff
path: root/libavformat/mp3dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-20 21:46:35 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-20 21:46:35 +0200
commit5864ce13d188260998bbf49a2a774fa9bd445c10 (patch)
tree149cc5b73142b5a876068d33ec1c127c65e6f37f /libavformat/mp3dec.c
parent8c51ea54897c2d8671b38efecc1422ad4ad344f9 (diff)
parent50d1f4437be88a4b7e412e90d71153cae68017cc (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: mp3dec: read Xing frame TOC index mp3dec: use named constants for Xing header flags libx264: add support for nal-hrd, required for Blu-ray streams. mov: support random access point grouping matroskadec: properly support BlockDuration Conflicts: libavcodec/libx264.c libavformat/isom.h libavformat/matroskadec.c libavformat/mov.c libavformat/mp3dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r--libavformat/mp3dec.c70
1 files changed, 60 insertions, 10 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c
index 5bd0e9648b..db01cd2081 100644
--- a/libavformat/mp3dec.c
+++ b/libavformat/mp3dec.c
@@ -29,6 +29,12 @@
#include "id3v1.h"
#include "libavcodec/mpegaudiodecheader.h"
+#define XING_FLAG_FRAMES 0x01
+#define XING_FLAG_SIZE 0x02
+#define XING_FLAG_TOC 0x04
+
+#define XING_TOC_COUNT 100
+
typedef struct {
int64_t filesize;
int start_pad;
@@ -79,6 +85,26 @@ static int mp3_read_probe(AVProbeData *p)
//mpegps_mp3_unrecognized_format.mpg has max_frames=3
}
+static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
+{
+ int i;
+
+ if (!filesize &&
+ !(filesize = avio_size(s->pb))) {
+ av_log(s, AV_LOG_WARNING, "Cannot determine file size, skipping TOC table.\n");
+ return;
+ }
+
+ for (i = 0; i < XING_TOC_COUNT; i++) {
+ uint8_t b = avio_r8(s->pb);
+
+ av_add_index_entry(s->streams[0],
+ av_rescale(b, filesize, 256),
+ av_rescale(i, duration, XING_TOC_COUNT),
+ 0, 0, AVINDEX_KEYFRAME);
+ }
+}
+
/**
* Try to find Xing/Info/VBRI tags and compute duration from info therein
*/
@@ -101,17 +127,20 @@ static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
if(c.layer != 3)
return -1;
+ spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
+
/* Check for Xing / Info tag */
avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
v = avio_rb32(s->pb);
if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
v = avio_rb32(s->pb);
- if(v & 0x1)
+ if(v & XING_FLAG_FRAMES)
frames = avio_rb32(s->pb);
- if(v & 0x2)
+ if(v & XING_FLAG_SIZE)
size = avio_rb32(s->pb);
- if(v & 4)
- avio_skip(s->pb, 100);
+ if (v & XING_FLAG_TOC && frames)
+ read_xing_toc(s, size, av_rescale_q(frames, (AVRational){spf, c.sample_rate},
+ st->time_base));
if(v & 8)
avio_skip(s->pb, 4);
@@ -145,7 +174,6 @@ static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
/* Skip the vbr tag frame */
avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
- spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
if(frames)
st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
st->time_base);
@@ -222,14 +250,36 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret;
}
-static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
+static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
+ int flags)
{
MP3Context *mp3 = s->priv_data;
- AVStream *st = s->streams[stream_index];
+ AVIndexEntry *ie;
+ AVStream *st = s->streams[0];
+ int64_t ret = av_index_search_timestamp(st, timestamp, flags);
+ uint32_t header = 0;
+
+ if (ret < 0)
+ return ret;
+
+ ie = &st->index_entries[ret];
+ ret = avio_seek(s->pb, ie->pos, SEEK_SET);
+ if (ret < 0)
+ return ret;
- st->skip_samples = timestamp <= 0 ? mp3->start_pad + 528 + 1 : 0;
+ while (!s->pb->eof_reached) {
+ header = (header << 8) + avio_r8(s->pb);
+ if (ff_mpa_check_header(header) >= 0) {
+ ff_update_cur_dts(s, st, ie->timestamp);
+ ret = avio_seek(s->pb, -4, SEEK_CUR);
+
+ st->skip_samples = ie->timestamp <= 0 ? mp3->start_pad + 528 + 1 : 0;
+
+ return (ret >= 0) ? 0 : ret;
+ }
+ }
- return -1;
+ return AVERROR_EOF;
}
AVInputFormat ff_mp3_demuxer = {
@@ -239,7 +289,7 @@ AVInputFormat ff_mp3_demuxer = {
.read_probe = mp3_read_probe,
.read_header = mp3_read_header,
.read_packet = mp3_read_packet,
- .read_seek = read_seek,
+ .read_seek = mp3_seek,
.flags = AVFMT_GENERIC_INDEX,
.extensions = "mp2,mp3,m2a", /* XXX: use probe */
};