~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/mp3.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2008-12-26 00:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20081226001006-wd8cuqn8d81smkdp
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 */
21
21
#include "avformat.h"
22
22
#include "mpegaudio.h"
23
 
 
24
 
#define ID3_HEADER_SIZE 10
25
 
#define ID3_TAG_SIZE 128
26
 
 
27
 
#define ID3_GENRE_MAX 125
28
 
 
29
 
static const char *id3_genre_str[ID3_GENRE_MAX + 1] = {
 
23
#include "avstring.h"
 
24
#include "mpegaudiodecheader.h"
 
25
 
 
26
#define ID3v2_HEADER_SIZE 10
 
27
#define ID3v1_TAG_SIZE 128
 
28
 
 
29
#define ID3v1_GENRE_MAX 125
 
30
 
 
31
static const char *id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
30
32
    [0] = "Blues",
31
33
    [1] = "Classic Rock",
32
34
    [2] = "Country",
155
157
    [125] = "Dance Hall",
156
158
};
157
159
 
158
 
/* buf must be ID3_HEADER_SIZE byte long */
159
 
static int id3_match(const uint8_t *buf)
 
160
/* buf must be ID3v2_HEADER_SIZE byte long */
 
161
static int id3v2_match(const uint8_t *buf)
160
162
{
161
163
    return (buf[0] == 'I' &&
162
164
            buf[1] == 'D' &&
169
171
            (buf[9] & 0x80) == 0);
170
172
}
171
173
 
172
 
static void id3_get_string(char *str, int str_size,
173
 
                           const uint8_t *buf, int buf_size)
 
174
static unsigned int id3v2_get_size(ByteIOContext *s, int len)
 
175
{
 
176
    int v=0;
 
177
    while(len--)
 
178
        v= (v<<7) + (get_byte(s)&0x7F);
 
179
    return v;
 
180
}
 
181
 
 
182
static void id3v2_read_ttag(AVFormatContext *s, int taglen, char *dst, int dstlen)
 
183
{
 
184
    char *q;
 
185
    int len;
 
186
 
 
187
    if(taglen < 1)
 
188
        return;
 
189
 
 
190
    taglen--; /* account for encoding type byte */
 
191
    dstlen--; /* Leave space for zero terminator */
 
192
 
 
193
    switch(get_byte(s->pb)) { /* encoding type */
 
194
 
 
195
    case 0:  /* ISO-8859-1 (0 - 255 maps directly into unicode) */
 
196
        q = dst;
 
197
        while(taglen--) {
 
198
            uint8_t tmp;
 
199
            PUT_UTF8(get_byte(s->pb), tmp, if (q - dst < dstlen - 1) *q++ = tmp;)
 
200
        }
 
201
        *q = '\0';
 
202
        break;
 
203
 
 
204
    case 3:  /* UTF-8 */
 
205
        len = FFMIN(taglen, dstlen);
 
206
        get_buffer(s->pb, dst, len);
 
207
        dst[len] = 0;
 
208
        break;
 
209
    }
 
210
}
 
211
 
 
212
/**
 
213
 * ID3v2 parser
 
214
 *
 
215
 * Handles ID3v2.2, 2.3 and 2.4.
 
216
 *
 
217
 */
 
218
 
 
219
static void id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t flags)
 
220
{
 
221
    int isv34, tlen;
 
222
    uint32_t tag;
 
223
    offset_t next;
 
224
    char tmp[16];
 
225
    int taghdrlen;
 
226
    const char *reason;
 
227
 
 
228
    switch(version) {
 
229
    case 2:
 
230
        if(flags & 0x40) {
 
231
            reason = "compression";
 
232
            goto error;
 
233
        }
 
234
        isv34 = 0;
 
235
        taghdrlen = 6;
 
236
        break;
 
237
 
 
238
    case 3:
 
239
    case 4:
 
240
        isv34 = 1;
 
241
        taghdrlen = 10;
 
242
        break;
 
243
 
 
244
    default:
 
245
        reason = "version";
 
246
        goto error;
 
247
    }
 
248
 
 
249
    if(flags & 0x80) {
 
250
        reason = "unsynchronization";
 
251
        goto error;
 
252
    }
 
253
 
 
254
    if(isv34 && flags & 0x40) /* Extended header present, just skip over it */
 
255
        url_fskip(s->pb, id3v2_get_size(s->pb, 4));
 
256
 
 
257
    while(len >= taghdrlen) {
 
258
        if(isv34) {
 
259
            tag  = get_be32(s->pb);
 
260
            tlen = id3v2_get_size(s->pb, 4);
 
261
            get_be16(s->pb); /* flags */
 
262
        } else {
 
263
            tag  = get_be24(s->pb);
 
264
            tlen = id3v2_get_size(s->pb, 3);
 
265
        }
 
266
        len -= taghdrlen + tlen;
 
267
 
 
268
        if(len < 0)
 
269
            break;
 
270
 
 
271
        next = url_ftell(s->pb) + tlen;
 
272
 
 
273
        switch(tag) {
 
274
        case MKBETAG('T', 'I', 'T', '2'):
 
275
        case MKBETAG(0,   'T', 'T', '2'):
 
276
            id3v2_read_ttag(s, tlen, s->title, sizeof(s->title));
 
277
            break;
 
278
        case MKBETAG('T', 'P', 'E', '1'):
 
279
        case MKBETAG(0,   'T', 'P', '1'):
 
280
            id3v2_read_ttag(s, tlen, s->author, sizeof(s->author));
 
281
            break;
 
282
        case MKBETAG('T', 'A', 'L', 'B'):
 
283
        case MKBETAG(0,   'T', 'A', 'L'):
 
284
            id3v2_read_ttag(s, tlen, s->album, sizeof(s->album));
 
285
            break;
 
286
        case MKBETAG('T', 'C', 'O', 'N'):
 
287
        case MKBETAG(0,   'T', 'C', 'O'):
 
288
            id3v2_read_ttag(s, tlen, s->genre, sizeof(s->genre));
 
289
            break;
 
290
        case MKBETAG('T', 'C', 'O', 'P'):
 
291
        case MKBETAG(0,   'T', 'C', 'R'):
 
292
            id3v2_read_ttag(s, tlen, s->copyright, sizeof(s->copyright));
 
293
            break;
 
294
        case MKBETAG('T', 'R', 'C', 'K'):
 
295
        case MKBETAG(0,   'T', 'R', 'K'):
 
296
            id3v2_read_ttag(s, tlen, tmp, sizeof(tmp));
 
297
            s->track = atoi(tmp);
 
298
            break;
 
299
        case 0:
 
300
            /* padding, skip to end */
 
301
            url_fskip(s->pb, len);
 
302
            len = 0;
 
303
            continue;
 
304
        }
 
305
        /* Skip to end of tag */
 
306
        url_fseek(s->pb, next, SEEK_SET);
 
307
    }
 
308
 
 
309
    if(version == 4 && flags & 0x10) /* Footer preset, always 10 bytes, skip over it */
 
310
        url_fskip(s->pb, 10);
 
311
    return;
 
312
 
 
313
  error:
 
314
    av_log(s, AV_LOG_INFO, "ID3v2.%d tag skipped, cannot handle %s\n", version, reason);
 
315
    url_fskip(s->pb, len);
 
316
}
 
317
 
 
318
static void id3v1_get_string(char *str, int str_size,
 
319
                             const uint8_t *buf, int buf_size)
174
320
{
175
321
    int i, c;
176
322
    char *q;
187
333
    *q = '\0';
188
334
}
189
335
 
190
 
/* 'buf' must be ID3_TAG_SIZE byte long */
191
 
static int id3_parse_tag(AVFormatContext *s, const uint8_t *buf)
 
336
/* 'buf' must be ID3v1_TAG_SIZE byte long */
 
337
static int id3v1_parse_tag(AVFormatContext *s, const uint8_t *buf)
192
338
{
193
339
    char str[5];
194
340
    int genre;
197
343
          buf[1] == 'A' &&
198
344
          buf[2] == 'G'))
199
345
        return -1;
200
 
    id3_get_string(s->title, sizeof(s->title), buf + 3, 30);
201
 
    id3_get_string(s->author, sizeof(s->author), buf + 33, 30);
202
 
    id3_get_string(s->album, sizeof(s->album), buf + 63, 30);
203
 
    id3_get_string(str, sizeof(str), buf + 93, 4);
 
346
    id3v1_get_string(s->title, sizeof(s->title), buf + 3, 30);
 
347
    id3v1_get_string(s->author, sizeof(s->author), buf + 33, 30);
 
348
    id3v1_get_string(s->album, sizeof(s->album), buf + 63, 30);
 
349
    id3v1_get_string(str, sizeof(str), buf + 93, 4);
204
350
    s->year = atoi(str);
205
 
    id3_get_string(s->comment, sizeof(s->comment), buf + 97, 30);
 
351
    id3v1_get_string(s->comment, sizeof(s->comment), buf + 97, 30);
206
352
    if (buf[125] == 0 && buf[126] != 0)
207
353
        s->track = buf[126];
208
354
    genre = buf[127];
209
 
    if (genre <= ID3_GENRE_MAX)
210
 
        pstrcpy(s->genre, sizeof(s->genre), id3_genre_str[genre]);
 
355
    if (genre <= ID3v1_GENRE_MAX)
 
356
        av_strlcpy(s->genre, id3v1_genre_str[genre], sizeof(s->genre));
211
357
    return 0;
212
358
}
213
359
 
214
 
static void id3_create_tag(AVFormatContext *s, uint8_t *buf)
 
360
static void id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
215
361
{
216
362
    int v, i;
217
363
 
218
 
    memset(buf, 0, ID3_TAG_SIZE); /* fail safe */
 
364
    memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
219
365
    buf[0] = 'T';
220
366
    buf[1] = 'A';
221
367
    buf[2] = 'G';
234
380
        buf[125] = 0;
235
381
        buf[126] = s->track;
236
382
    }
237
 
    for(i = 0; i <= ID3_GENRE_MAX; i++) {
238
 
        if (!strcasecmp(s->genre, id3_genre_str[i])) {
 
383
    for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
 
384
        if (!strcasecmp(s->genre, id3v1_genre_str[i])) {
239
385
            buf[127] = i;
240
386
            break;
241
387
        }
246
392
 
247
393
static int mp3_read_probe(AVProbeData *p)
248
394
{
249
 
    int max_frames, first_frames;
 
395
    int max_frames, first_frames = 0;
250
396
    int fsize, frames, sample_rate;
251
397
    uint32_t header;
252
398
    uint8_t *buf, *buf2, *end;
253
399
    AVCodecContext avctx;
254
400
 
255
 
    if(p->buf_size < ID3_HEADER_SIZE)
256
 
        return 0;
257
 
 
258
 
    if(id3_match(p->buf))
259
 
        return AVPROBE_SCORE_MAX/2+1; // this must be less then mpeg-ps because some retards put id3 tage before mpeg-ps files
 
401
    if(id3v2_match(p->buf))
 
402
        return AVPROBE_SCORE_MAX/2+1; // this must be less than mpeg-ps because some retards put id3v2 tags before mpeg-ps files
260
403
 
261
404
    max_frames = 0;
262
405
    buf = p->buf;
263
 
    end = buf + FFMIN(4096, p->buf_size - sizeof(uint32_t));
 
406
    end = buf + p->buf_size - sizeof(uint32_t);
264
407
 
265
 
    for(; buf < end; buf++) {
 
408
    for(; buf < end; buf= buf2+1) {
266
409
        buf2 = buf;
267
410
 
268
411
        for(frames = 0; buf2 < end; frames++) {
269
 
            header = (buf2[0] << 24) | (buf2[1] << 16) | (buf2[2] << 8) | buf2[3];
270
 
            fsize = mpa_decode_header(&avctx, header, &sample_rate);
 
412
            header = AV_RB32(buf2);
 
413
            fsize = ff_mpa_decode_header(&avctx, header, &sample_rate);
271
414
            if(fsize < 0)
272
415
                break;
273
416
            buf2 += fsize;
277
420
            first_frames= frames;
278
421
    }
279
422
    if   (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
 
423
    else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
280
424
    else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
281
425
    else if(max_frames>=1) return 1;
282
426
    else                   return 0;
283
427
}
284
428
 
 
429
/**
 
430
 * Try to find Xing/Info/VBRI tags and compute duration from info therein
 
431
 */
 
432
static void mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, offset_t base)
 
433
{
 
434
    uint32_t v, spf;
 
435
    int frames = -1; /* Total number of frames in file */
 
436
    const offset_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
 
437
    MPADecodeContext c;
 
438
 
 
439
    v = get_be32(s->pb);
 
440
    if(ff_mpa_check_header(v) < 0)
 
441
      return;
 
442
 
 
443
    ff_mpegaudio_decode_header(&c, v);
 
444
    if(c.layer != 3)
 
445
        return;
 
446
 
 
447
    /* Check for Xing / Info tag */
 
448
    url_fseek(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1], SEEK_CUR);
 
449
    v = get_be32(s->pb);
 
450
    if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
 
451
        v = get_be32(s->pb);
 
452
        if(v & 0x1)
 
453
            frames = get_be32(s->pb);
 
454
    }
 
455
 
 
456
    /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
 
457
    url_fseek(s->pb, base + 4 + 32, SEEK_SET);
 
458
    v = get_be32(s->pb);
 
459
    if(v == MKBETAG('V', 'B', 'R', 'I')) {
 
460
        /* Check tag version */
 
461
        if(get_be16(s->pb) == 1) {
 
462
            /* skip delay, quality and total bytes */
 
463
            url_fseek(s->pb, 8, SEEK_CUR);
 
464
            frames = get_be32(s->pb);
 
465
        }
 
466
    }
 
467
 
 
468
    if(frames < 0)
 
469
        return;
 
470
 
 
471
    spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
 
472
    st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
 
473
                                st->time_base);
 
474
}
 
475
 
285
476
static int mp3_read_header(AVFormatContext *s,
286
477
                           AVFormatParameters *ap)
287
478
{
288
479
    AVStream *st;
289
 
    uint8_t buf[ID3_TAG_SIZE];
 
480
    uint8_t buf[ID3v1_TAG_SIZE];
290
481
    int len, ret, filesize;
 
482
    offset_t off;
291
483
 
292
484
    st = av_new_stream(s, 0);
293
485
    if (!st)
294
 
        return AVERROR_NOMEM;
 
486
        return AVERROR(ENOMEM);
295
487
 
296
488
    st->codec->codec_type = CODEC_TYPE_AUDIO;
297
489
    st->codec->codec_id = CODEC_ID_MP3;
298
 
    st->need_parsing = 1;
 
490
    st->need_parsing = AVSTREAM_PARSE_FULL;
 
491
    st->start_time = 0;
299
492
 
300
493
    /* try to get the TAG */
301
 
    if (!url_is_streamed(&s->pb)) {
 
494
    if (!url_is_streamed(s->pb)) {
302
495
        /* XXX: change that */
303
 
        filesize = url_fsize(&s->pb);
 
496
        filesize = url_fsize(s->pb);
304
497
        if (filesize > 128) {
305
 
            url_fseek(&s->pb, filesize - 128, SEEK_SET);
306
 
            ret = get_buffer(&s->pb, buf, ID3_TAG_SIZE);
307
 
            if (ret == ID3_TAG_SIZE) {
308
 
                id3_parse_tag(s, buf);
 
498
            url_fseek(s->pb, filesize - 128, SEEK_SET);
 
499
            ret = get_buffer(s->pb, buf, ID3v1_TAG_SIZE);
 
500
            if (ret == ID3v1_TAG_SIZE) {
 
501
                id3v1_parse_tag(s, buf);
309
502
            }
310
 
            url_fseek(&s->pb, 0, SEEK_SET);
 
503
            url_fseek(s->pb, 0, SEEK_SET);
311
504
        }
312
505
    }
313
506
 
314
 
    /* if ID3 header found, skip it */
315
 
    ret = get_buffer(&s->pb, buf, ID3_HEADER_SIZE);
316
 
    if (ret != ID3_HEADER_SIZE)
 
507
    /* if ID3v2 header found, skip it */
 
508
    ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE);
 
509
    if (ret != ID3v2_HEADER_SIZE)
317
510
        return -1;
318
 
    if (id3_match(buf)) {
319
 
        /* skip ID3 header */
 
511
    if (id3v2_match(buf)) {
 
512
        /* parse ID3v2 header */
320
513
        len = ((buf[6] & 0x7f) << 21) |
321
514
            ((buf[7] & 0x7f) << 14) |
322
515
            ((buf[8] & 0x7f) << 7) |
323
516
            (buf[9] & 0x7f);
324
 
        url_fskip(&s->pb, len);
 
517
        id3v2_parse(s, len, buf[3], buf[5]);
325
518
    } else {
326
 
        url_fseek(&s->pb, 0, SEEK_SET);
 
519
        url_fseek(s->pb, 0, SEEK_SET);
327
520
    }
328
521
 
 
522
    off = url_ftell(s->pb);
 
523
    mp3_parse_vbr_tags(s, st, off);
 
524
    url_fseek(s->pb, off, SEEK_SET);
 
525
 
329
526
    /* the parameters will be extracted from the compressed bitstream */
330
527
    return 0;
331
528
}
339
536
 
340
537
    size= MP3_PACKET_SIZE;
341
538
 
342
 
    ret= av_get_packet(&s->pb, pkt, size);
 
539
    ret= av_get_packet(s->pb, pkt, size);
343
540
 
344
541
    pkt->stream_index = 0;
345
542
    if (ret <= 0) {
346
 
        return AVERROR_IO;
 
543
        return AVERROR(EIO);
347
544
    }
348
545
    /* note: we need to modify the packet size here to handle the last
349
546
       packet */
358
555
 
359
556
#ifdef CONFIG_MUXERS
360
557
/* simple formats */
 
558
 
 
559
static void id3v2_put_size(AVFormatContext *s, int size)
 
560
{
 
561
    put_byte(s->pb, size >> 21 & 0x7f);
 
562
    put_byte(s->pb, size >> 14 & 0x7f);
 
563
    put_byte(s->pb, size >> 7  & 0x7f);
 
564
    put_byte(s->pb, size       & 0x7f);
 
565
}
 
566
 
 
567
static void id3v2_put_ttag(AVFormatContext *s, const char *string, uint32_t tag)
 
568
{
 
569
    int len = strlen(string);
 
570
    put_be32(s->pb, tag);
 
571
    id3v2_put_size(s, len + 1);
 
572
    put_be16(s->pb, 0);
 
573
    put_byte(s->pb, 3); /* UTF-8 */
 
574
    put_buffer(s->pb, string, len);
 
575
}
 
576
 
 
577
 
 
578
/**
 
579
 * Write an ID3v2.4 header at beginning of stream
 
580
 */
 
581
 
361
582
static int mp3_write_header(struct AVFormatContext *s)
362
583
{
 
584
    int totlen = 0;
 
585
    char tracktxt[10];
 
586
    char yeartxt[10];
 
587
 
 
588
    if(s->track)
 
589
        snprintf(tracktxt, sizeof(tracktxt), "%d", s->track);
 
590
    if(s->year)
 
591
        snprintf( yeartxt, sizeof(yeartxt) , "%d", s->year );
 
592
 
 
593
    if(s->title[0])     totlen += 11 + strlen(s->title);
 
594
    if(s->author[0])    totlen += 11 + strlen(s->author);
 
595
    if(s->album[0])     totlen += 11 + strlen(s->album);
 
596
    if(s->genre[0])     totlen += 11 + strlen(s->genre);
 
597
    if(s->copyright[0]) totlen += 11 + strlen(s->copyright);
 
598
    if(s->track)        totlen += 11 + strlen(tracktxt);
 
599
    if(s->year)         totlen += 11 + strlen(yeartxt);
 
600
    if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT))
 
601
        totlen += strlen(LIBAVFORMAT_IDENT) + 11;
 
602
 
 
603
    if(totlen == 0)
 
604
        return 0;
 
605
 
 
606
    put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */
 
607
    put_byte(s->pb, 0);
 
608
    put_byte(s->pb, 0); /* flags */
 
609
 
 
610
    id3v2_put_size(s, totlen);
 
611
 
 
612
    if(s->title[0])     id3v2_put_ttag(s, s->title,     MKBETAG('T', 'I', 'T', '2'));
 
613
    if(s->author[0])    id3v2_put_ttag(s, s->author,    MKBETAG('T', 'P', 'E', '1'));
 
614
    if(s->album[0])     id3v2_put_ttag(s, s->album,     MKBETAG('T', 'A', 'L', 'B'));
 
615
    if(s->genre[0])     id3v2_put_ttag(s, s->genre,     MKBETAG('T', 'C', 'O', 'N'));
 
616
    if(s->copyright[0]) id3v2_put_ttag(s, s->copyright, MKBETAG('T', 'C', 'O', 'P'));
 
617
    if(s->track)        id3v2_put_ttag(s, tracktxt,     MKBETAG('T', 'R', 'C', 'K'));
 
618
    if(s->year)         id3v2_put_ttag(s, yeartxt,      MKBETAG('T', 'Y', 'E', 'R'));
 
619
    if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT))
 
620
        id3v2_put_ttag(s, LIBAVFORMAT_IDENT,            MKBETAG('T', 'E', 'N', 'C'));
363
621
    return 0;
364
622
}
365
623
 
366
624
static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt)
367
625
{
368
 
    put_buffer(&s->pb, pkt->data, pkt->size);
369
 
    put_flush_packet(&s->pb);
 
626
    put_buffer(s->pb, pkt->data, pkt->size);
 
627
    put_flush_packet(s->pb);
370
628
    return 0;
371
629
}
372
630
 
373
631
static int mp3_write_trailer(struct AVFormatContext *s)
374
632
{
375
 
    uint8_t buf[ID3_TAG_SIZE];
 
633
    uint8_t buf[ID3v1_TAG_SIZE];
376
634
 
377
 
    /* write the id3 header */
 
635
    /* write the id3v1 tag */
378
636
    if (s->title[0] != '\0') {
379
 
        id3_create_tag(s, buf);
380
 
        put_buffer(&s->pb, buf, ID3_TAG_SIZE);
381
 
        put_flush_packet(&s->pb);
 
637
        id3v1_create_tag(s, buf);
 
638
        put_buffer(s->pb, buf, ID3v1_TAG_SIZE);
 
639
        put_flush_packet(s->pb);
382
640
    }
383
641
    return 0;
384
642
}
410
668
    0,
411
669
    CODEC_ID_MP2,
412
670
    0,
413
 
    mp3_write_header,
 
671
    NULL,
414
672
    mp3_write_packet,
415
673
    mp3_write_trailer,
416
674
};