electronicarts.c 23.1 KB
Newer Older
1
/* Electronic Arts Multimedia File Demuxer
2
 * Copyright (c) 2004  The FFmpeg project
Peter Ross's avatar
Peter Ross committed
3
 * Copyright (c) 2006-2008 Peter Ross
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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
 */

/**
23
 * @file
24 25 26 27
 * Electronic Arts Multimedia file demuxer (WVE/UV2/etc.)
 * by Robin Kay (komadori at gekkou.co.uk)
 */

28 29
#include <inttypes.h>

30
#include "libavutil/intreadwrite.h"
31
#include "avformat.h"
32
#include "internal.h"
33 34

#define SCHl_TAG MKTAG('S', 'C', 'H', 'l')
35 36 37 38 39 40 41
#define SEAD_TAG MKTAG('S', 'E', 'A', 'D')  /* Sxxx header */
#define SNDC_TAG MKTAG('S', 'N', 'D', 'C')  /* Sxxx data */
#define SEND_TAG MKTAG('S', 'E', 'N', 'D')  /* Sxxx end */
#define SHEN_TAG MKTAG('S', 'H', 'E', 'N')  /* SxEN header */
#define SDEN_TAG MKTAG('S', 'D', 'E', 'N')  /* SxEN data */
#define SEEN_TAG MKTAG('S', 'E', 'E', 'N')  /* SxEN end */
#define ISNh_TAG MKTAG('1', 'S', 'N', 'h')  /* 1SNx header */
42
#define EACS_TAG MKTAG('E', 'A', 'C', 'S')
43 44
#define ISNd_TAG MKTAG('1', 'S', 'N', 'd')  /* 1SNx data */
#define ISNe_TAG MKTAG('1', 'S', 'N', 'e')  /* 1SNx end */
45
#define PT00_TAG MKTAG('P', 'T', 0x0, 0x0)
46
#define GSTR_TAG MKTAG('G', 'S', 'T', 'R')
47 48
#define SCDl_TAG MKTAG('S', 'C', 'D', 'l')
#define SCEl_TAG MKTAG('S', 'C', 'E', 'l')
49 50
#define kVGT_TAG MKTAG('k', 'V', 'G', 'T')  /* TGV I-frame */
#define fVGT_TAG MKTAG('f', 'V', 'G', 'T')  /* TGV P-frame */
51
#define mTCD_TAG MKTAG('m', 'T', 'C', 'D')  /* MDEC */
52 53
#define MADk_TAG MKTAG('M', 'A', 'D', 'k')  /* MAD I-frame */
#define MADm_TAG MKTAG('M', 'A', 'D', 'm')  /* MAD P-frame */
54
#define MADe_TAG MKTAG('M', 'A', 'D', 'e')  /* MAD lqp-frame */
55 56 57 58
#define MPCh_TAG MKTAG('M', 'P', 'C', 'h')  /* MPEG-2 */
#define TGQs_TAG MKTAG('T', 'G', 'Q', 's')  /* TGQ I-frame (appears in .TGQ files) */
#define pQGT_TAG MKTAG('p', 'Q', 'G', 'T')  /* TGQ I-frame (appears in .UV files) */
#define pIQT_TAG MKTAG('p', 'I', 'Q', 'T')  /* TQI/UV2 I-frame (.UV2/.WVE) */
59 60 61
#define MVhd_TAG MKTAG('M', 'V', 'h', 'd')
#define MV0K_TAG MKTAG('M', 'V', '0', 'K')
#define MV0F_TAG MKTAG('M', 'V', '0', 'F')
62 63 64
#define AVhd_TAG MKTAG('A', 'V', 'h', 'd')
#define AV0K_TAG MKTAG('A', 'V', '0', 'K')
#define AV0F_TAG MKTAG('A', 'V', '0', 'F')
65
#define MVIh_TAG MKTAG('M', 'V', 'I', 'h')  /* CMV header */
66
#define MVIf_TAG MKTAG('M', 'V', 'I', 'f')  /* CMV I-frame */
67
#define AVP6_TAG MKTAG('A', 'V', 'P', '6')
68

69 70
typedef struct VideoProperties {
    enum AVCodecID codec;
71
    AVRational time_base;
72
    int width, height;
73
    int nb_frames;
74 75 76 77 78 79
    int stream_index;
} VideoProperties;

typedef struct EaDemuxContext {
    int big_endian;

80
    VideoProperties video, alpha;
81

82
    enum AVCodecID audio_codec;
83 84
    int audio_stream_index;

85
    int bytes;
86
    int sample_rate;
87 88
    int num_channels;
    int num_samples;
89 90

    int platform;
91 92
} EaDemuxContext;

93
static uint32_t read_arbitrary(AVIOContext *pb)
94
{
95 96 97 98
    uint8_t size, byte;
    int i;
    uint32_t word;

99
    size = avio_r8(pb);
100 101 102

    word = 0;
    for (i = 0; i < size; i++) {
103
        byte   = avio_r8(pb);
104
        word <<= 8;
105
        word  |= byte;
106 107 108 109 110
    }

    return word;
}

111 112
static int process_audio_header_elements(AVFormatContext *s)
{
113
    EaDemuxContext *ea = s->priv_data;
114
    AVIOContext    *pb = s->pb;
115
    int in_header = 1;
116
    int compression_type = -1, revision = -1, revision2 = -1;
117

118 119
    ea->bytes        = 2;
    ea->sample_rate  = -1;
120 121
    ea->num_channels = 1;

122
    while (!avio_feof(pb) && in_header) {
123
        int in_subheader;
124
        uint8_t byte;
125
        byte = avio_r8(pb);
126 127 128

        switch (byte) {
        case 0xFD:
129
            av_log(s, AV_LOG_DEBUG, "entered audio subheader\n");
130
            in_subheader = 1;
131
            while (!avio_feof(pb) && in_subheader) {
132
                uint8_t subbyte;
133
                subbyte = avio_r8(pb);
134 135

                switch (subbyte) {
136
                case 0x80:
137
                    revision = read_arbitrary(pb);
138 139
                    av_log(s, AV_LOG_DEBUG,
                           "revision (element 0x80) set to 0x%08x\n", revision);
140
                    break;
141
                case 0x82:
142
                    ea->num_channels = read_arbitrary(pb);
143 144 145
                    av_log(s, AV_LOG_DEBUG,
                           "num_channels (element 0x82) set to 0x%08x\n",
                           ea->num_channels);
146 147
                    break;
                case 0x83:
148
                    compression_type = read_arbitrary(pb);
149 150 151
                    av_log(s, AV_LOG_DEBUG,
                           "compression_type (element 0x83) set to 0x%08x\n",
                           compression_type);
152
                    break;
153
                case 0x84:
154
                    ea->sample_rate = read_arbitrary(pb);
155 156 157
                    av_log(s, AV_LOG_DEBUG,
                           "sample_rate (element 0x84) set to %i\n",
                           ea->sample_rate);
158
                    break;
159
                case 0x85:
160
                    ea->num_samples = read_arbitrary(pb);
161 162 163
                    av_log(s, AV_LOG_DEBUG,
                           "num_samples (element 0x85) set to 0x%08x\n",
                           ea->num_samples);
164 165
                    break;
                case 0x8A:
166
                    av_log(s, AV_LOG_DEBUG,
167
                           "element 0x%02x set to 0x%08"PRIx32"\n",
168
                           subbyte, read_arbitrary(pb));
169
                    av_log(s, AV_LOG_DEBUG, "exited audio subheader\n");
170
                    in_subheader = 0;
171
                    break;
172
                case 0xA0:
173
                    revision2 = read_arbitrary(pb);
174 175 176
                    av_log(s, AV_LOG_DEBUG,
                           "revision2 (element 0xA0) set to 0x%08x\n",
                           revision2);
177
                    break;
178
                case 0xFF:
179 180
                    av_log(s, AV_LOG_DEBUG,
                           "end of header block reached (within audio subheader)\n");
181 182
                    in_subheader = 0;
                    in_header    = 0;
183
                    break;
184
                default:
185
                    av_log(s, AV_LOG_DEBUG,
186
                           "element 0x%02x set to 0x%08"PRIx32"\n",
187
                           subbyte, read_arbitrary(pb));
188 189 190 191 192
                    break;
                }
            }
            break;
        case 0xFF:
193
            av_log(s, AV_LOG_DEBUG, "end of header block reached\n");
194
            in_header = 0;
195 196
            break;
        default:
197
            av_log(s, AV_LOG_DEBUG,
198
                   "header element 0x%02x set to 0x%08"PRIx32"\n",
199
                   byte, read_arbitrary(pb));
200 201 202 203
            break;
        }
    }

204
    switch (compression_type) {
205 206 207 208 209 210
    case  0:
        ea->audio_codec = AV_CODEC_ID_PCM_S16LE;
        break;
    case  7:
        ea->audio_codec = AV_CODEC_ID_ADPCM_EA;
        break;
211 212
    case -1:
        switch (revision) {
213 214 215 216 217 218 219 220 221 222 223
        case  1:
            ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R1;
            break;
        case  2:
            ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R2;
            break;
        case  3:
            ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R3;
            break;
        case -1:
            break;
224
        default:
225
            avpriv_request_sample(s, "stream type; revision=%i", revision);
226 227
            return 0;
        }
228
        switch (revision2) {
229 230 231
        case  8:
            ea->audio_codec = AV_CODEC_ID_PCM_S16LE_PLANAR;
            break;
232 233 234 235 236 237
        case 10:
            switch (revision) {
            case -1:
            case  2: ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R1; break;
            case  3: ea->audio_codec = AV_CODEC_ID_ADPCM_EA_R2; break;
            default:
238
                avpriv_request_sample(s, "stream type; revision=%i, revision2=%i", revision, revision2);
239 240 241
                return 0;
            }
            break;
242
        case 15:
243 244 245 246 247
        case 16:
            ea->audio_codec = AV_CODEC_ID_MP3;
            break;
        case -1:
            break;
248
        default:
249
            ea->audio_codec = AV_CODEC_ID_NONE;
250
            avpriv_request_sample(s, "stream type; revision2=%i", revision2);
251 252
            return 0;
        }
253
        break;
254
    default:
255 256 257
        avpriv_request_sample(s,
                              "stream type; compression_type=%i",
                              compression_type);
258 259
        return 0;
    }
260

261 262
    if (ea->audio_codec == AV_CODEC_ID_NONE && ea->platform == 0x01)
        ea->audio_codec = AV_CODEC_ID_ADPCM_PSX;
263
    if (ea->sample_rate == -1)
264
        ea->sample_rate = revision == 3 ? 48000 : 22050;
265

266 267 268
    return 1;
}

269
static void process_audio_header_eacs(AVFormatContext *s)
270 271
{
    EaDemuxContext *ea = s->priv_data;
272
    AVIOContext *pb    = s->pb;
273 274
    int compression_type;

275 276 277 278
    ea->sample_rate  = ea->big_endian ? avio_rb32(pb) : avio_rl32(pb);
    ea->bytes        = avio_r8(pb);   /* 1=8-bit, 2=16-bit */
    ea->num_channels = avio_r8(pb);
    compression_type = avio_r8(pb);
279
    avio_skip(pb, 13);
280 281 282 283

    switch (compression_type) {
    case 0:
        switch (ea->bytes) {
284 285 286 287 288 289
        case 1:
            ea->audio_codec = AV_CODEC_ID_PCM_S8;
            break;
        case 2:
            ea->audio_codec = AV_CODEC_ID_PCM_S16LE;
            break;
290 291
        }
        break;
292 293 294 295 296 297 298
    case 1:
        ea->audio_codec = AV_CODEC_ID_PCM_MULAW;
        ea->bytes       = 1;
        break;
    case 2:
        ea->audio_codec = AV_CODEC_ID_ADPCM_IMA_EA_EACS;
        break;
299
    default:
300 301 302
        avpriv_request_sample(s,
                              "stream type; audio compression_type=%i",
                              compression_type);
303 304 305
    }
}

306
static void process_audio_header_sead(AVFormatContext *s)
Peter Ross's avatar
Peter Ross committed
307 308
{
    EaDemuxContext *ea = s->priv_data;
309
    AVIOContext *pb    = s->pb;
Peter Ross's avatar
Peter Ross committed
310

311 312 313
    ea->sample_rate  = avio_rl32(pb);
    ea->bytes        = avio_rl32(pb);  /* 1=8-bit, 2=16-bit */
    ea->num_channels = avio_rl32(pb);
314
    ea->audio_codec  = AV_CODEC_ID_ADPCM_IMA_EA_SEAD;
Peter Ross's avatar
Peter Ross committed
315 316
}

317
static void process_video_header_mdec(AVFormatContext *s, VideoProperties *video)
318
{
319
    AVIOContext *pb    = s->pb;
320
    avio_skip(pb, 4);
321 322 323 324
    video->width       = avio_rl16(pb);
    video->height      = avio_rl16(pb);
    video->time_base   = (AVRational) { 1, 15 };
    video->codec = AV_CODEC_ID_MDEC;
325 326
}

327
static int process_video_header_vp6(AVFormatContext *s, VideoProperties *video)
328
{
329
    AVIOContext *pb = s->pb;
330

331
    avio_skip(pb, 8);
332
    video->nb_frames = avio_rl32(pb);
333
    avio_skip(pb, 4);
334 335 336
    video->time_base.den = avio_rl32(pb);
    video->time_base.num = avio_rl32(pb);
    if (video->time_base.den <= 0 || video->time_base.num <= 0) {
337 338 339
        av_log(s, AV_LOG_ERROR, "Timebase is invalid\n");
        return AVERROR_INVALIDDATA;
    }
340
    video->codec   = AV_CODEC_ID_VP6;
341 342 343 344

    return 1;
}

345
static void process_video_header_cmv(AVFormatContext *s, VideoProperties *video)
346 347 348 349 350 351
{
    int fps;

    avio_skip(s->pb, 10);
    fps = avio_rl16(s->pb);
    if (fps)
352 353
        video->time_base = (AVRational) { 1, fps };
    video->codec = AV_CODEC_ID_CMV;
354 355
}

356 357
/* Process EA file header.
 * Return 1 if the EA file is valid and successfully opened, 0 otherwise. */
358 359
static int process_ea_header(AVFormatContext *s)
{
360 361
    uint32_t blockid, size = 0;
    EaDemuxContext *ea = s->priv_data;
362
    AVIOContext *pb    = s->pb;
363 364
    int i;

365
    for (i = 0; i < 5 && (!ea->audio_codec || !ea->video.codec); i++) {
366
        uint64_t startpos     = avio_tell(pb);
367
        int err               = 0;
368

369
        blockid = avio_rl32(pb);
370
        size    = avio_rl32(pb);
371
        if (i == 0)
372
            ea->big_endian = size > av_bswap32(size);
373
        if (ea->big_endian)
374
            size = av_bswap32(size);
375

376 377 378 379 380
        if (size < 8) {
            av_log(s, AV_LOG_ERROR, "chunk size too small\n");
            return AVERROR_INVALIDDATA;
        }

381
        switch (blockid) {
382 383
        case ISNh_TAG:
            if (avio_rl32(pb) != EACS_TAG) {
384
                avpriv_request_sample(s, "unknown 1SNh headerid");
385 386
                return 0;
            }
387
            process_audio_header_eacs(s);
388
            break;
389

390 391 392 393 394
        case SCHl_TAG:
        case SHEN_TAG:
            blockid = avio_rl32(pb);
            if (blockid == GSTR_TAG) {
                avio_skip(pb, 4);
395 396
            } else if ((blockid & 0xFF) != (PT00_TAG & 0xFF)) {
                blockid = avio_rl32(pb);
397
            }
398
            ea->platform = (blockid >> 16) & 0xFF;
399 400
            err = process_audio_header_elements(s);
            break;
401

402
        case SEAD_TAG:
403
            process_audio_header_sead(s);
404
            break;
Peter Ross's avatar
Peter Ross committed
405

406
        case MVIh_TAG:
407
            process_video_header_cmv(s, &ea->video);
408
            break;
Peter Ross's avatar
Peter Ross committed
409

410
        case kVGT_TAG:
411
            ea->video.codec = AV_CODEC_ID_TGV;
412
            break;
413

414
        case mTCD_TAG:
415
            process_video_header_mdec(s, &ea->video);
416
            break;
417

418
        case MPCh_TAG:
419
            ea->video.codec = AV_CODEC_ID_MPEG2VIDEO;
420
            break;
421

422 423
        case pQGT_TAG:
        case TGQs_TAG:
424 425
            ea->video.codec = AV_CODEC_ID_TGQ;
            ea->video.time_base   = (AVRational) { 1, 15 };
426
            break;
427

428
        case pIQT_TAG:
429 430
            ea->video.codec = AV_CODEC_ID_TQI;
            ea->video.time_base   = (AVRational) { 1, 15 };
431
            break;
432

433
        case MADk_TAG:
434
            ea->video.codec = AV_CODEC_ID_MAD;
435
            avio_skip(pb, 6);
436
            ea->video.time_base = (AVRational) { avio_rl16(pb), 1000 };
437
            break;
438

439
        case MVhd_TAG:
440
            err = process_video_header_vp6(s, &ea->video);
441
            break;
442 443 444 445

        case AVhd_TAG:
            err = process_video_header_vp6(s, &ea->alpha);
            break;
446 447
        }

448 449 450 451 452
        if (err < 0) {
            av_log(s, AV_LOG_ERROR, "error parsing header: %i\n", err);
            return err;
        }

453
        avio_seek(pb, startpos + size, SEEK_SET);
454
    }
455

456
    avio_seek(pb, 0, SEEK_SET);
457 458 459 460 461 462

    return 1;
}

static int ea_probe(AVProbeData *p)
{
463 464
    unsigned big_endian, size;

465
    switch (AV_RL32(&p->buf[0])) {
466
    case ISNh_TAG:
467
    case SCHl_TAG:
Peter Ross's avatar
Peter Ross committed
468
    case SEAD_TAG:
469
    case SHEN_TAG:
470 471 472
    case kVGT_TAG:
    case MADk_TAG:
    case MPCh_TAG:
473
    case MVhd_TAG:
474
    case MVIh_TAG:
475
    case AVP6_TAG:
476 477 478
        break;
    default:
        return 0;
479
    }
480 481 482 483 484
    size = AV_RL32(&p->buf[4]);
    big_endian = size > 0x000FFFFF;
    if (big_endian)
        size = av_bswap32(size);
    if (size > 0xfffff || size < 8)
485
        return 0;
486

487
    return AVPROBE_SCORE_MAX;
488 489
}

490 491 492 493 494 495 496 497 498 499 500 501
static int init_video_stream(AVFormatContext *s, VideoProperties *video)
{
    AVStream *st;

    if (!video->codec)
        return 0;

    /* initialize the video decoder stream */
    st = avformat_new_stream(s, NULL);
    if (!st)
        return AVERROR(ENOMEM);
    video->stream_index = st->index;
502 503
    st->codecpar->codec_type  = AVMEDIA_TYPE_VIDEO;
    st->codecpar->codec_id    = video->codec;
504
    // parsing is necessary to make FFmpeg generate correct timestamps
505
    if (st->codecpar->codec_id == AV_CODEC_ID_MPEG2VIDEO)
506
        st->need_parsing = AVSTREAM_PARSE_HEADERS;
507 508 509
    st->codecpar->codec_tag   = 0; /* no fourcc */
    st->codecpar->width       = video->width;
    st->codecpar->height      = video->height;
510 511 512 513 514 515 516 517
    st->duration           = st->nb_frames = video->nb_frames;
    if (video->time_base.num)
        avpriv_set_pts_info(st, 64, video->time_base.num, video->time_base.den);
    st->r_frame_rate       =
    st->avg_frame_rate     = av_inv_q(video->time_base);
    return 0;
}

518
static int ea_read_header(AVFormatContext *s)
519
{
520
    EaDemuxContext *ea = s->priv_data;
521 522
    AVStream *st;

523
    if (process_ea_header(s)<=0)
524
        return AVERROR(EIO);
525

526
    if (init_video_stream(s, &ea->video) || init_video_stream(s, &ea->alpha))
527
        return AVERROR(ENOMEM);
528

529
    if (ea->audio_codec) {
530
        if (ea->num_channels <= 0 || ea->num_channels > 2) {
531 532
            av_log(s, AV_LOG_WARNING,
                   "Unsupported number of channels: %d\n", ea->num_channels);
533 534 535 536
            ea->audio_codec = 0;
            return 1;
        }
        if (ea->sample_rate <= 0) {
537 538
            av_log(s, AV_LOG_ERROR,
                   "Unsupported sample rate: %d\n", ea->sample_rate);
539 540 541
            ea->audio_codec = 0;
            return 1;
        }
542
        if (ea->bytes <= 0) {
543 544
            av_log(s, AV_LOG_ERROR,
                   "Invalid number of bytes per sample: %d\n", ea->bytes);
545
            ea->audio_codec = AV_CODEC_ID_NONE;
546 547
            return 1;
        }
548

Aurelien Jacobs's avatar
Aurelien Jacobs committed
549
        /* initialize the audio decoder stream */
550
        st = avformat_new_stream(s, NULL);
Aurelien Jacobs's avatar
Aurelien Jacobs committed
551 552
        if (!st)
            return AVERROR(ENOMEM);
553
        avpriv_set_pts_info(st, 33, 1, ea->sample_rate);
554 555 556 557 558 559 560 561 562 563 564
        st->codecpar->codec_type            = AVMEDIA_TYPE_AUDIO;
        st->codecpar->codec_id              = ea->audio_codec;
        st->codecpar->codec_tag             = 0;   /* no tag */
        st->codecpar->channels              = ea->num_channels;
        st->codecpar->sample_rate           = ea->sample_rate;
        st->codecpar->bits_per_coded_sample = ea->bytes * 8;
        st->codecpar->bit_rate              = st->codecpar->channels *
                                              st->codecpar->sample_rate *
                                              st->codecpar->bits_per_coded_sample / 4;
        st->codecpar->block_align           = st->codecpar->channels *
                                              st->codecpar->bits_per_coded_sample;
565 566
        ea->audio_stream_index           = st->index;
        st->start_time                   = 0;
567
    }
568 569 570 571

    return 1;
}

572
static int ea_read_packet(AVFormatContext *s, AVPacket *pkt)
573 574
{
    EaDemuxContext *ea = s->priv_data;
575
    AVIOContext *pb    = s->pb;
576
    int partial_packet = 0;
577
    unsigned int chunk_type, chunk_size;
578
    int ret = 0, packet_read = 0, key = 0;
579
    int av_uninit(num_samples);
580

581
    while (!packet_read || partial_packet) {
582
        chunk_type = avio_rl32(pb);
583
        chunk_size = ea->big_endian ? avio_rb32(pb) : avio_rl32(pb);
584
        if (chunk_size < 8)
585 586
            return AVERROR_INVALIDDATA;
        chunk_size -= 8;
587 588 589

        switch (chunk_type) {
        /* audio data */
590
        case ISNh_TAG:
591
            /* header chunk also contains data; skip over the header portion */
592 593
            if (chunk_size < 32)
                return AVERROR_INVALIDDATA;
594
            avio_skip(pb, 32);
595
            chunk_size -= 32;
596
        case ISNd_TAG:
597
        case SCDl_TAG:
Peter Ross's avatar
Peter Ross committed
598
        case SNDC_TAG:
599
        case SDEN_TAG:
600
            if (!ea->audio_codec) {
601
                avio_skip(pb, chunk_size);
602
                break;
603 604
            } else if (ea->audio_codec == AV_CODEC_ID_PCM_S16LE_PLANAR ||
                       ea->audio_codec == AV_CODEC_ID_MP3) {
605
                num_samples = avio_rl32(pb);
606
                avio_skip(pb, 8);
607
                chunk_size -= 12;
608 609 610
            } else if (ea->audio_codec == AV_CODEC_ID_ADPCM_PSX) {
                avio_skip(pb, 8);
                chunk_size -= 8;
611
            }
612

613
            if (partial_packet) {
614
                avpriv_request_sample(s, "video header followed by audio packet");
615
                av_packet_unref(pkt);
616 617
                partial_packet = 0;
            }
618

619 620 621
            if (!chunk_size)
                continue;

Michael Niedermayer's avatar
Michael Niedermayer committed
622
            ret = av_get_packet(pb, pkt, chunk_size);
623 624
            if (ret < 0)
                return ret;
Reimar Döffinger's avatar
Reimar Döffinger committed
625 626 627
            pkt->stream_index = ea->audio_stream_index;

            switch (ea->audio_codec) {
628 629 630 631 632
            case AV_CODEC_ID_ADPCM_EA:
            case AV_CODEC_ID_ADPCM_EA_R1:
            case AV_CODEC_ID_ADPCM_EA_R2:
            case AV_CODEC_ID_ADPCM_IMA_EA_EACS:
            case AV_CODEC_ID_ADPCM_EA_R3:
633 634
                if (pkt->size < 4) {
                    av_log(s, AV_LOG_ERROR, "Packet is too short\n");
635
                    av_packet_unref(pkt);
636 637 638
                    return AVERROR_INVALIDDATA;
                }
                if (ea->audio_codec == AV_CODEC_ID_ADPCM_EA_R3)
639
                    pkt->duration = AV_RB32(pkt->data);
640 641
                else
                    pkt->duration = AV_RL32(pkt->data);
Justin Ruggles's avatar
Justin Ruggles committed
642
                break;
643
            case AV_CODEC_ID_ADPCM_IMA_EA_SEAD:
Justin Ruggles's avatar
Justin Ruggles committed
644
                pkt->duration = ret * 2 / ea->num_channels;
Reimar Döffinger's avatar
Reimar Döffinger committed
645
                break;
646 647
            case AV_CODEC_ID_PCM_S16LE_PLANAR:
            case AV_CODEC_ID_MP3:
Justin Ruggles's avatar
Justin Ruggles committed
648
                pkt->duration = num_samples;
Reimar Döffinger's avatar
Reimar Döffinger committed
649
                break;
650 651 652
            case AV_CODEC_ID_ADPCM_PSX:
                pkt->duration = chunk_size / (16 * ea->num_channels) * 28;
                break;
Reimar Döffinger's avatar
Reimar Döffinger committed
653
            default:
Justin Ruggles's avatar
Justin Ruggles committed
654
                pkt->duration = chunk_size / (ea->bytes * ea->num_channels);
Reimar Döffinger's avatar
Reimar Döffinger committed
655
            }
656 657 658 659 660

            packet_read = 1;
            break;

        /* ending tag */
661
        case 0:
662
        case ISNe_TAG:
663
        case SCEl_TAG:
Peter Ross's avatar
Peter Ross committed
664
        case SEND_TAG:
665
        case SEEN_TAG:
666 667 668 669 670 671 672 673 674 675 676 677 678
            while (!avio_feof(pb)) {
                int tag = avio_rl32(pb);

                if (tag == ISNh_TAG ||
                    tag == SCHl_TAG ||
                    tag == SEAD_TAG ||
                    tag == SHEN_TAG) {
                    avio_skip(pb, -4);
                    break;
                }
            }
            if (avio_feof(pb))
                ret = AVERROR_EOF;
679 680 681
            packet_read = 1;
            break;

Peter Ross's avatar
Peter Ross committed
682
        case MVIh_TAG:
683
        case kVGT_TAG:
684 685
        case pQGT_TAG:
        case TGQs_TAG:
686
        case MADk_TAG:
687
            key = AV_PKT_FLAG_KEY;
Peter Ross's avatar
Peter Ross committed
688
        case MVIf_TAG:
689
        case fVGT_TAG:
690 691
        case MADm_TAG:
        case MADe_TAG:
692
            avio_seek(pb, -8, SEEK_CUR);    // include chunk preamble
Peter Ross's avatar
Peter Ross committed
693 694 695
            chunk_size += 8;
            goto get_video_packet;

696
        case mTCD_TAG:
697 698 699
            if (chunk_size < 8)
                return AVERROR_INVALIDDATA;

700
            avio_skip(pb, 8);               // skip ea DCT header
701 702 703
            chunk_size -= 8;
            goto get_video_packet;

704
        case MV0K_TAG:
705
        case AV0K_TAG:
706
        case MPCh_TAG:
707
        case pIQT_TAG:
708
            key = AV_PKT_FLAG_KEY;
709
        case MV0F_TAG:
710
        case AV0F_TAG:
Peter Ross's avatar
Peter Ross committed
711
get_video_packet:
712 713 714
            if (!chunk_size)
                continue;

715 716 717 718 719 720 721 722 723
            if (partial_packet) {
                ret = av_append_packet(pb, pkt, chunk_size);
            } else
                ret = av_get_packet(pb, pkt, chunk_size);
            if (ret < 0) {
                packet_read = 1;
                break;
            }
            partial_packet = chunk_type == MVIh_TAG;
724 725 726 727
            if (chunk_type == AV0K_TAG || chunk_type == AV0F_TAG)
                pkt->stream_index = ea->alpha.stream_index;
            else
                pkt->stream_index = ea->video.stream_index;
728 729
            pkt->flags       |= key;
            packet_read       = 1;
730 731
            break;

732
        default:
733
            avio_skip(pb, chunk_size);
734 735 736 737
            break;
        }
    }

738
    if (ret < 0 && partial_packet)
739
        av_packet_unref(pkt);
740 741 742
    return ret;
}

743
AVInputFormat ff_ea_demuxer = {
744
    .name           = "ea",
745
    .long_name      = NULL_IF_CONFIG_SMALL("Electronic Arts Multimedia"),
746 747 748 749
    .priv_data_size = sizeof(EaDemuxContext),
    .read_probe     = ea_probe,
    .read_header    = ea_read_header,
    .read_packet    = ea_read_packet,
750
};