rm.c 37.6 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1
/*
2
 * "Real" compatible muxer and demuxer.
3
 * Copyright (c) 2000, 2001 Fabrice Bellard.
Fabrice Bellard's avatar
Fabrice Bellard committed
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.
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
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
Fabrice Bellard's avatar
Fabrice Bellard committed
20 21 22 23
 */
#include "avformat.h"

/* in ms */
24
#define BUFFER_DURATION 0
Fabrice Bellard's avatar
Fabrice Bellard committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

typedef struct {
    int nb_packets;
    int packet_total_size;
    int packet_max_size;
    /* codec related output */
    int bit_rate;
    float frame_rate;
    int nb_frames;    /* current frame number */
    int total_frames; /* total number of frames */
    int num;
    AVCodecContext *enc;
} StreamInfo;

typedef struct {
    StreamInfo streams[2];
    StreamInfo *audio_stream, *video_stream;
    int data_pos; /* position of the data after the header */
    int nb_packets;
44
    int old_format;
45 46
    int current_stream;
    int remaining_len;
47 48 49 50 51 52 53 54
    /// Audio descrambling matrix parameters
    uint8_t *audiobuf; ///< place to store reordered audio data
    int64_t audiotimestamp; ///< Audio packet timestamp
    int sub_packet_cnt; // Subpacket counter, used while reading
    int sub_packet_size, sub_packet_h, coded_framesize; ///< Descrambling parameters from container
    int audio_stream_num; ///< Stream number for audio packets
    int audio_pkt_cnt; ///< Output packet counter
    int audio_framesize; /// Audio frame size from container
55
    int sub_packet_lengths[16]; /// Length of each aac subpacket
Fabrice Bellard's avatar
Fabrice Bellard committed
56 57
} RMContext;

58
#ifdef CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
static void put_str(ByteIOContext *s, const char *tag)
{
    put_be16(s,strlen(tag));
    while (*tag) {
        put_byte(s, *tag++);
    }
}

static void put_str8(ByteIOContext *s, const char *tag)
{
    put_byte(s, strlen(tag));
    while (*tag) {
        put_byte(s, *tag++);
    }
}

75
static void rv10_write_header(AVFormatContext *ctx,
Fabrice Bellard's avatar
Fabrice Bellard committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
                              int data_size, int index_pos)
{
    RMContext *rm = ctx->priv_data;
    ByteIOContext *s = &ctx->pb;
    StreamInfo *stream;
    unsigned char *data_offset_ptr, *start_ptr;
    const char *desc, *mimetype;
    int nb_packets, packet_total_size, packet_max_size, size, packet_avg_size, i;
    int bit_rate, v, duration, flags, data_pos;

    start_ptr = s->buf_ptr;

    put_tag(s, ".RMF");
    put_be32(s,18); /* header size */
    put_be16(s,0);
    put_be32(s,0);
    put_be32(s,4 + ctx->nb_streams); /* num headers */

    put_tag(s,"PROP");
    put_be32(s, 50);
    put_be16(s, 0);
    packet_max_size = 0;
    packet_total_size = 0;
    nb_packets = 0;
    bit_rate = 0;
    duration = 0;
    for(i=0;i<ctx->nb_streams;i++) {
        StreamInfo *stream = &rm->streams[i];
        bit_rate += stream->bit_rate;
        if (stream->packet_max_size > packet_max_size)
            packet_max_size = stream->packet_max_size;
        nb_packets += stream->nb_packets;
        packet_total_size += stream->packet_total_size;
        /* select maximum duration */
        v = (int) (1000.0 * (float)stream->total_frames / stream->frame_rate);
        if (v > duration)
            duration = v;
    }
    put_be32(s, bit_rate); /* max bit rate */
    put_be32(s, bit_rate); /* avg bit rate */
    put_be32(s, packet_max_size);        /* max packet size */
    if (nb_packets > 0)
        packet_avg_size = packet_total_size / nb_packets;
    else
        packet_avg_size = 0;
    put_be32(s, packet_avg_size);        /* avg packet size */
    put_be32(s, nb_packets);  /* num packets */
    put_be32(s, duration); /* duration */
    put_be32(s, BUFFER_DURATION);           /* preroll */
    put_be32(s, index_pos);           /* index offset */
    /* computation of data the data offset */
    data_offset_ptr = s->buf_ptr;
    put_be32(s, 0);           /* data offset : will be patched after */
    put_be16(s, ctx->nb_streams);    /* num streams */
    flags = 1 | 2; /* save allowed & perfect play */
    if (url_is_streamed(s))
        flags |= 4; /* live broadcast */
    put_be16(s, flags);
134

Fabrice Bellard's avatar
Fabrice Bellard committed
135 136 137
    /* comments */

    put_tag(s,"CONT");
138
    size = strlen(ctx->title) + strlen(ctx->author) + strlen(ctx->copyright) +
Fabrice Bellard's avatar
Fabrice Bellard committed
139 140 141 142 143 144 145
        strlen(ctx->comment) + 4 * 2 + 10;
    put_be32(s,size);
    put_be16(s,0);
    put_str(s, ctx->title);
    put_str(s, ctx->author);
    put_str(s, ctx->copyright);
    put_str(s, ctx->comment);
146

Fabrice Bellard's avatar
Fabrice Bellard committed
147 148 149 150
    for(i=0;i<ctx->nb_streams;i++) {
        int codec_data_size;

        stream = &rm->streams[i];
151

Fabrice Bellard's avatar
Fabrice Bellard committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
        if (stream->enc->codec_type == CODEC_TYPE_AUDIO) {
            desc = "The Audio Stream";
            mimetype = "audio/x-pn-realaudio";
            codec_data_size = 73;
        } else {
            desc = "The Video Stream";
            mimetype = "video/x-pn-realvideo";
            codec_data_size = 34;
        }

        put_tag(s,"MDPR");
        size = 10 + 9 * 4 + strlen(desc) + strlen(mimetype) + codec_data_size;
        put_be32(s, size);
        put_be16(s, 0);

        put_be16(s, i); /* stream number */
        put_be32(s, stream->bit_rate); /* max bit rate */
        put_be32(s, stream->bit_rate); /* avg bit rate */
        put_be32(s, stream->packet_max_size);        /* max packet size */
        if (stream->nb_packets > 0)
172
            packet_avg_size = stream->packet_total_size /
Fabrice Bellard's avatar
Fabrice Bellard committed
173 174 175 176 177 178 179
                stream->nb_packets;
        else
            packet_avg_size = 0;
        put_be32(s, packet_avg_size);        /* avg packet size */
        put_be32(s, 0);           /* start time */
        put_be32(s, BUFFER_DURATION);           /* preroll */
        /* duration */
180 181 182 183
        if (url_is_streamed(s) || !stream->total_frames)
            put_be32(s, (int)(3600 * 1000));
        else
            put_be32(s, (int)(stream->total_frames * 1000 / stream->frame_rate));
Fabrice Bellard's avatar
Fabrice Bellard committed
184 185 186
        put_str8(s, desc);
        put_str8(s, mimetype);
        put_be32(s, codec_data_size);
187

Fabrice Bellard's avatar
Fabrice Bellard committed
188 189 190
        if (stream->enc->codec_type == CODEC_TYPE_AUDIO) {
            int coded_frame_size, fscode, sample_rate;
            sample_rate = stream->enc->sample_rate;
191
            coded_frame_size = (stream->enc->bit_rate *
Fabrice Bellard's avatar
Fabrice Bellard committed
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
                                stream->enc->frame_size) / (8 * sample_rate);
            /* audio codec info */
            put_tag(s, ".ra");
            put_byte(s, 0xfd);
            put_be32(s, 0x00040000); /* version */
            put_tag(s, ".ra4");
            put_be32(s, 0x01b53530); /* stream length */
            put_be16(s, 4); /* unknown */
            put_be32(s, 0x39); /* header size */

            switch(sample_rate) {
            case 48000:
            case 24000:
            case 12000:
                fscode = 1;
                break;
            default:
            case 44100:
            case 22050:
            case 11025:
                fscode = 2;
                break;
            case 32000:
            case 16000:
            case 8000:
                fscode = 3;
            }
            put_be16(s, fscode); /* codec additional info, for AC3, seems
                                     to be a frequency code */
            /* special hack to compensate rounding errors... */
            if (coded_frame_size == 557)
                coded_frame_size--;
            put_be32(s, coded_frame_size); /* frame length */
            put_be32(s, 0x51540); /* unknown */
            put_be32(s, 0x249f0); /* unknown */
            put_be32(s, 0x249f0); /* unknown */
            put_be16(s, 0x01);
            /* frame length : seems to be very important */
230
            put_be16(s, coded_frame_size);
Fabrice Bellard's avatar
Fabrice Bellard committed
231 232 233 234 235 236 237 238 239 240 241 242 243
            put_be32(s, 0); /* unknown */
            put_be16(s, stream->enc->sample_rate); /* sample rate */
            put_be32(s, 0x10); /* unknown */
            put_be16(s, stream->enc->channels);
            put_str8(s, "Int0"); /* codec name */
            put_str8(s, "dnet"); /* codec name */
            put_be16(s, 0); /* title length */
            put_be16(s, 0); /* author length */
            put_be16(s, 0); /* copyright length */
            put_byte(s, 0); /* end of header */
        } else {
            /* video codec info */
            put_be32(s,34); /* size */
Michael Niedermayer's avatar
Michael Niedermayer committed
244 245 246 247
            if(stream->enc->codec_id == CODEC_ID_RV10)
                put_tag(s,"VIDORV10");
            else
                put_tag(s,"VIDORV20");
Fabrice Bellard's avatar
Fabrice Bellard committed
248 249
            put_be16(s, stream->enc->width);
            put_be16(s, stream->enc->height);
250
            put_be16(s, (int) stream->frame_rate); /* frames per seconds ? */
Fabrice Bellard's avatar
Fabrice Bellard committed
251
            put_be32(s,0);     /* unknown meaning */
252
            put_be16(s, (int) stream->frame_rate);  /* unknown meaning */
Fabrice Bellard's avatar
Fabrice Bellard committed
253 254 255 256 257
            put_be32(s,0);     /* unknown meaning */
            put_be16(s, 8);    /* unknown meaning */
            /* Seems to be the codec version: only use basic H263. The next
               versions seems to add a diffential DC coding as in
               MPEG... nothing new under the sun */
Michael Niedermayer's avatar
Michael Niedermayer committed
258
            if(stream->enc->codec_id == CODEC_ID_RV10)
259
                put_be32(s,0x10000000);
Michael Niedermayer's avatar
Michael Niedermayer committed
260
            else
261 262
                put_be32(s,0x20103001);
            //put_be32(s,0x10003000);
Fabrice Bellard's avatar
Fabrice Bellard committed
263 264 265 266 267 268 269 270 271 272
        }
    }

    /* patch data offset field */
    data_pos = s->buf_ptr - start_ptr;
    rm->data_pos = data_pos;
    data_offset_ptr[0] = data_pos >> 24;
    data_offset_ptr[1] = data_pos >> 16;
    data_offset_ptr[2] = data_pos >> 8;
    data_offset_ptr[3] = data_pos;
273

Fabrice Bellard's avatar
Fabrice Bellard committed
274 275 276 277 278 279 280 281 282
    /* data stream */
    put_tag(s,"DATA");
    put_be32(s,data_size + 10 + 8);
    put_be16(s,0);

    put_be32(s, nb_packets); /* number of packets */
    put_be32(s,0); /* next data header */
}

283
static void write_packet_header(AVFormatContext *ctx, StreamInfo *stream,
Fabrice Bellard's avatar
Fabrice Bellard committed
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
                                int length, int key_frame)
{
    int timestamp;
    ByteIOContext *s = &ctx->pb;

    stream->nb_packets++;
    stream->packet_total_size += length;
    if (length > stream->packet_max_size)
        stream->packet_max_size =  length;

    put_be16(s,0); /* version */
    put_be16(s,length + 12);
    put_be16(s, stream->num); /* stream number */
    timestamp = (1000 * (float)stream->nb_frames) / stream->frame_rate;
    put_be32(s, timestamp); /* timestamp */
    put_byte(s, 0); /* reserved */
    put_byte(s, key_frame ? 2 : 0); /* flags */
}

static int rm_write_header(AVFormatContext *s)
{
Fabrice Bellard's avatar
Fabrice Bellard committed
305
    RMContext *rm = s->priv_data;
Fabrice Bellard's avatar
Fabrice Bellard committed
306 307 308 309 310 311
    StreamInfo *stream;
    int n;
    AVCodecContext *codec;

    for(n=0;n<s->nb_streams;n++) {
        s->streams[n]->id = n;
312
        codec = s->streams[n]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
        stream = &rm->streams[n];
        memset(stream, 0, sizeof(StreamInfo));
        stream->num = n;
        stream->bit_rate = codec->bit_rate;
        stream->enc = codec;

        switch(codec->codec_type) {
        case CODEC_TYPE_AUDIO:
            rm->audio_stream = stream;
            stream->frame_rate = (float)codec->sample_rate / (float)codec->frame_size;
            /* XXX: dummy values */
            stream->packet_max_size = 1024;
            stream->nb_packets = 0;
            stream->total_frames = stream->nb_packets;
            break;
        case CODEC_TYPE_VIDEO:
            rm->video_stream = stream;
330
            stream->frame_rate = (float)codec->time_base.den / (float)codec->time_base.num;
Fabrice Bellard's avatar
Fabrice Bellard committed
331 332 333 334 335
            /* XXX: dummy values */
            stream->packet_max_size = 4096;
            stream->nb_packets = 0;
            stream->total_frames = stream->nb_packets;
            break;
336
        default:
337
            return -1;
Fabrice Bellard's avatar
Fabrice Bellard committed
338 339 340 341 342 343 344 345
        }
    }

    rv10_write_header(s, 0, 0);
    put_flush_packet(&s->pb);
    return 0;
}

346
static int rm_write_audio(AVFormatContext *s, const uint8_t *buf, int size, int flags)
Fabrice Bellard's avatar
Fabrice Bellard committed
347
{
348
    uint8_t *buf1;
Fabrice Bellard's avatar
Fabrice Bellard committed
349 350 351 352 353
    RMContext *rm = s->priv_data;
    ByteIOContext *pb = &s->pb;
    StreamInfo *stream = rm->audio_stream;
    int i;

Fabrice Bellard's avatar
Fabrice Bellard committed
354
    /* XXX: suppress this malloc */
355
    buf1= (uint8_t*) av_malloc( size * sizeof(uint8_t) );
356

357
    write_packet_header(s, stream, size, !!(flags & PKT_FLAG_KEY));
358

Fabrice Bellard's avatar
Fabrice Bellard committed
359 360 361 362 363 364 365 366
    /* for AC3, the words seems to be reversed */
    for(i=0;i<size;i+=2) {
        buf1[i] = buf[i+1];
        buf1[i+1] = buf[i];
    }
    put_buffer(pb, buf1, size);
    put_flush_packet(pb);
    stream->nb_frames++;
367
    av_free(buf1);
Fabrice Bellard's avatar
Fabrice Bellard committed
368 369 370
    return 0;
}

371
static int rm_write_video(AVFormatContext *s, const uint8_t *buf, int size, int flags)
Fabrice Bellard's avatar
Fabrice Bellard committed
372 373 374 375
{
    RMContext *rm = s->priv_data;
    ByteIOContext *pb = &s->pb;
    StreamInfo *stream = rm->video_stream;
376
    int key_frame = !!(flags & PKT_FLAG_KEY);
377

Fabrice Bellard's avatar
Fabrice Bellard committed
378 379 380 381 382 383 384
    /* XXX: this is incorrect: should be a parameter */

    /* Well, I spent some time finding the meaning of these bits. I am
       not sure I understood everything, but it works !! */
#if 1
    write_packet_header(s, stream, size + 7, key_frame);
    /* bit 7: '1' if final packet of a frame converted in several packets */
385
    put_byte(pb, 0x81);
Fabrice Bellard's avatar
Fabrice Bellard committed
386 387 388
    /* bit 7: '1' if I frame. bits 6..0 : sequence number in current
       frame starting from 1 */
    if (key_frame) {
389
        put_byte(pb, 0x81);
Fabrice Bellard's avatar
Fabrice Bellard committed
390
    } else {
391
        put_byte(pb, 0x01);
Fabrice Bellard's avatar
Fabrice Bellard committed
392
    }
Michael Niedermayer's avatar
Michael Niedermayer committed
393 394
    put_be16(pb, 0x4000 + (size)); /* total frame size */
    put_be16(pb, 0x4000 + (size));              /* offset from the start or the end */
Fabrice Bellard's avatar
Fabrice Bellard committed
395 396 397
#else
    /* full frame */
    write_packet_header(s, size + 6);
398
    put_byte(pb, 0xc0);
Michael Niedermayer's avatar
Michael Niedermayer committed
399
    put_be16(pb, 0x4000 + size); /* total frame size */
Fabrice Bellard's avatar
Fabrice Bellard committed
400 401
    put_be16(pb, 0x4000 + packet_number * 126); /* position in stream */
#endif
402 403
    put_byte(pb, stream->nb_frames & 0xff);

Fabrice Bellard's avatar
Fabrice Bellard committed
404 405 406 407 408 409 410
    put_buffer(pb, buf, size);
    put_flush_packet(pb);

    stream->nb_frames++;
    return 0;
}

411
static int rm_write_packet(AVFormatContext *s, AVPacket *pkt)
Fabrice Bellard's avatar
Fabrice Bellard committed
412
{
413
    if (s->streams[pkt->stream_index]->codec->codec_type ==
Fabrice Bellard's avatar
Fabrice Bellard committed
414
        CODEC_TYPE_AUDIO)
415
        return rm_write_audio(s, pkt->data, pkt->size, pkt->flags);
Fabrice Bellard's avatar
Fabrice Bellard committed
416
    else
417
        return rm_write_video(s, pkt->data, pkt->size, pkt->flags);
Fabrice Bellard's avatar
Fabrice Bellard committed
418
}
419

Fabrice Bellard's avatar
Fabrice Bellard committed
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
static int rm_write_trailer(AVFormatContext *s)
{
    RMContext *rm = s->priv_data;
    int data_size, index_pos, i;
    ByteIOContext *pb = &s->pb;

    if (!url_is_streamed(&s->pb)) {
        /* end of file: finish to write header */
        index_pos = url_fseek(pb, 0, SEEK_CUR);
        data_size = index_pos - rm->data_pos;

        /* index */
        put_tag(pb, "INDX");
        put_be32(pb, 10 + 10 * s->nb_streams);
        put_be16(pb, 0);
435

Fabrice Bellard's avatar
Fabrice Bellard committed
436 437 438 439 440 441 442 443
        for(i=0;i<s->nb_streams;i++) {
            put_be32(pb, 0); /* zero indices */
            put_be16(pb, i); /* stream number */
            put_be32(pb, 0); /* next index */
        }
        /* undocumented end header */
        put_be32(pb, 0);
        put_be32(pb, 0);
444

Fabrice Bellard's avatar
Fabrice Bellard committed
445 446 447 448 449 450 451 452 453 454 455 456
        url_fseek(pb, 0, SEEK_SET);
        for(i=0;i<s->nb_streams;i++)
            rm->streams[i].total_frames = rm->streams[i].nb_frames;
        rv10_write_header(s, data_size, index_pos);
    } else {
        /* undocumented end header */
        put_be32(pb, 0);
        put_be32(pb, 0);
    }
    put_flush_packet(pb);
    return 0;
}
457
#endif //CONFIG_MUXERS
Fabrice Bellard's avatar
Fabrice Bellard committed
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

/***************************************************/

static void get_str(ByteIOContext *pb, char *buf, int buf_size)
{
    int len, i;
    char *q;

    len = get_be16(pb);
    q = buf;
    for(i=0;i<len;i++) {
        if (i < buf_size - 1)
            *q++ = get_byte(pb);
    }
    *q = '\0';
}

static void get_str8(ByteIOContext *pb, char *buf, int buf_size)
{
    int len, i;
    char *q;

    len = get_byte(pb);
    q = buf;
    for(i=0;i<len;i++) {
        if (i < buf_size - 1)
            *q++ = get_byte(pb);
    }
    *q = '\0';
}

489
static int rm_read_audio_stream_info(AVFormatContext *s, AVStream *st,
490 491
                                      int read_all)
{
492
    RMContext *rm = s->priv_data;
493
    ByteIOContext *pb = &s->pb;
494
    char buf[256];
495 496 497 498 499 500
    uint32_t version;
    int i;

    /* ra type header */
    version = get_be32(pb); /* version */
    if (((version >> 16) & 0xff) == 3) {
501
        int64_t startpos = url_ftell(pb);
502 503 504 505 506 507 508
        /* very old version */
        for(i = 0; i < 14; i++)
            get_byte(pb);
        get_str8(pb, s->title, sizeof(s->title));
        get_str8(pb, s->author, sizeof(s->author));
        get_str8(pb, s->copyright, sizeof(s->copyright));
        get_str8(pb, s->comment, sizeof(s->comment));
509 510
        if ((startpos + (version & 0xffff)) >= url_ftell(pb) + 2) {
        // fourcc (should always be "lpcJ")
511 512
        get_byte(pb);
        get_str8(pb, buf, sizeof(buf));
513 514 515 516
        }
        // Skip extra header crap (this should never happen)
        if ((startpos + (version & 0xffff)) > url_ftell(pb))
            url_fskip(pb, (version & 0xffff) + startpos - url_ftell(pb));
517 518 519 520
        st->codec->sample_rate = 8000;
        st->codec->channels = 1;
        st->codec->codec_type = CODEC_TYPE_AUDIO;
        st->codec->codec_id = CODEC_ID_RA_144;
521
    } else {
522
        int flavor, sub_packet_h, coded_framesize, sub_packet_size;
523 524
        /* old version (4) */
        get_be32(pb); /* .ra4 */
525 526
        get_be32(pb); /* data size */
        get_be16(pb); /* version2 */
527
        get_be32(pb); /* header size */
528
        flavor= get_be16(pb); /* add codec info / flavor */
529
        rm->coded_framesize = coded_framesize = get_be32(pb); /* coded frame size */
530 531 532
        get_be32(pb); /* ??? */
        get_be32(pb); /* ??? */
        get_be32(pb); /* ??? */
533
        rm->sub_packet_h = sub_packet_h = get_be16(pb); /* 1 */
534
        st->codec->block_align= get_be16(pb); /* frame size */
535
        rm->sub_packet_size = sub_packet_size = get_be16(pb); /* sub packet size */
536
        get_be16(pb); /* ??? */
537 538
        if (((version >> 16) & 0xff) == 5) {
            get_be16(pb); get_be16(pb); get_be16(pb); }
539
        st->codec->sample_rate = get_be16(pb);
540
        get_be32(pb);
541
        st->codec->channels = get_be16(pb);
542 543
        if (((version >> 16) & 0xff) == 5) {
            get_be32(pb);
544 545 546 547 548 549
            buf[0] = get_byte(pb);
            buf[1] = get_byte(pb);
            buf[2] = get_byte(pb);
            buf[3] = get_byte(pb);
            buf[4] = 0;
        } else {
550 551
            get_str8(pb, buf, sizeof(buf)); /* desc */
            get_str8(pb, buf, sizeof(buf)); /* desc */
552
        }
553
        st->codec->codec_type = CODEC_TYPE_AUDIO;
554
        if (!strcmp(buf, "dnet")) {
555
            st->codec->codec_id = CODEC_ID_AC3;
556
        } else if (!strcmp(buf, "28_8")) {
557
            st->codec->codec_id = CODEC_ID_RA_288;
558 559 560
            st->codec->extradata_size= 0;
            rm->audio_framesize = st->codec->block_align;
            st->codec->block_align = coded_framesize;
561 562 563 564 565 566

            if(rm->audio_framesize >= UINT_MAX / sub_packet_h){
                av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n");
                return -1;
            }

567 568 569 570 571 572 573
            rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h);
        } else if (!strcmp(buf, "cook")) {
            int codecdata_length, i;
            get_be16(pb); get_byte(pb);
            if (((version >> 16) & 0xff) == 5)
                get_byte(pb);
            codecdata_length = get_be32(pb);
574 575 576 577 578
            if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){
                av_log(s, AV_LOG_ERROR, "codecdata_length too large\n");
                return -1;
            }

579 580
            st->codec->codec_id = CODEC_ID_COOK;
            st->codec->extradata_size= codecdata_length;
581
            st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
582 583 584 585
            for(i = 0; i < codecdata_length; i++)
                ((uint8_t*)st->codec->extradata)[i] = get_byte(pb);
            rm->audio_framesize = st->codec->block_align;
            st->codec->block_align = rm->sub_packet_size;
586 587 588 589 590 591

            if(rm->audio_framesize >= UINT_MAX / sub_packet_h){
                av_log(s, AV_LOG_ERROR, "rm->audio_framesize * sub_packet_h too large\n");
                return -1;
            }

592
            rm->audiobuf = av_malloc(rm->audio_framesize * sub_packet_h);
593 594 595 596 597 598 599
        } else if (!strcmp(buf, "raac") || !strcmp(buf, "racp")) {
            int codecdata_length, i;
            get_be16(pb); get_byte(pb);
            if (((version >> 16) & 0xff) == 5)
                get_byte(pb);
            st->codec->codec_id = CODEC_ID_AAC;
            codecdata_length = get_be32(pb);
600 601 602 603
            if(codecdata_length + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)codecdata_length){
                av_log(s, AV_LOG_ERROR, "codecdata_length too large\n");
                return -1;
            }
604 605 606 607 608 609 610
            if (codecdata_length >= 1) {
                st->codec->extradata_size = codecdata_length - 1;
                st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
                get_byte(pb);
                for(i = 0; i < st->codec->extradata_size; i++)
                    ((uint8_t*)st->codec->extradata)[i] = get_byte(pb);
            }
611
        } else {
612 613
            st->codec->codec_id = CODEC_ID_NONE;
            pstrcpy(st->codec->codec_name, sizeof(st->codec->codec_name),
614 615 616 617 618 619
                    buf);
        }
        if (read_all) {
            get_byte(pb);
            get_byte(pb);
            get_byte(pb);
620

621 622 623 624 625 626
            get_str8(pb, s->title, sizeof(s->title));
            get_str8(pb, s->author, sizeof(s->author));
            get_str8(pb, s->copyright, sizeof(s->copyright));
            get_str8(pb, s->comment, sizeof(s->comment));
        }
    }
627
    return 0;
628 629 630 631 632 633 634 635 636 637
}

static int rm_read_header_old(AVFormatContext *s, AVFormatParameters *ap)
{
    RMContext *rm = s->priv_data;
    AVStream *st;

    rm->old_format = 1;
    st = av_new_stream(s, 0);
    if (!st)
638 639
        return -1;
    return rm_read_audio_stream_info(s, st, 1);
640 641
}

Fabrice Bellard's avatar
Fabrice Bellard committed
642 643
static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
{
Fabrice Bellard's avatar
Fabrice Bellard committed
644
    RMContext *rm = s->priv_data;
Fabrice Bellard's avatar
Fabrice Bellard committed
645 646 647 648
    AVStream *st;
    ByteIOContext *pb = &s->pb;
    unsigned int tag, v;
    int tag_size, size, codec_data_size, i;
649
    int64_t codec_pos;
650
    unsigned int start_time, duration;
Fabrice Bellard's avatar
Fabrice Bellard committed
651
    char buf[128];
652
    int flags = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
653

654 655 656 657 658
    tag = get_le32(pb);
    if (tag == MKTAG('.', 'r', 'a', 0xfd)) {
        /* very old .ra format */
        return rm_read_header_old(s, ap);
    } else if (tag != MKTAG('.', 'R', 'M', 'F')) {
659
        return AVERROR_IO;
660
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
661 662 663 664 665

    get_be32(pb); /* header size */
    get_be16(pb);
    get_be32(pb);
    get_be32(pb); /* number of headers */
666

Fabrice Bellard's avatar
Fabrice Bellard committed
667 668 669 670 671 672 673
    for(;;) {
        if (url_feof(pb))
            goto fail;
        tag = get_le32(pb);
        tag_size = get_be32(pb);
        get_be16(pb);
#if 0
674
        printf("tag=%c%c%c%c (%08x) size=%d\n",
Fabrice Bellard's avatar
Fabrice Bellard committed
675 676 677 678 679 680 681
               (tag) & 0xff,
               (tag >> 8) & 0xff,
               (tag >> 16) & 0xff,
               (tag >> 24) & 0xff,
               tag,
               tag_size);
#endif
682
        if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A'))
Fabrice Bellard's avatar
Fabrice Bellard committed
683 684 685 686 687 688 689 690 691 692 693 694 695 696
            goto fail;
        switch(tag) {
        case MKTAG('P', 'R', 'O', 'P'):
            /* file header */
            get_be32(pb); /* max bit rate */
            get_be32(pb); /* avg bit rate */
            get_be32(pb); /* max packet size */
            get_be32(pb); /* avg packet size */
            get_be32(pb); /* nb packets */
            get_be32(pb); /* duration */
            get_be32(pb); /* preroll */
            get_be32(pb); /* index offset */
            get_be32(pb); /* data offset */
            get_be16(pb); /* nb streams */
697
            flags = get_be16(pb); /* flags */
Fabrice Bellard's avatar
Fabrice Bellard committed
698 699 700 701 702 703 704 705
            break;
        case MKTAG('C', 'O', 'N', 'T'):
            get_str(pb, s->title, sizeof(s->title));
            get_str(pb, s->author, sizeof(s->author));
            get_str(pb, s->copyright, sizeof(s->copyright));
            get_str(pb, s->comment, sizeof(s->comment));
            break;
        case MKTAG('M', 'D', 'P', 'R'):
706
            st = av_new_stream(s, 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
707 708 709 710
            if (!st)
                goto fail;
            st->id = get_be16(pb);
            get_be32(pb); /* max bit rate */
711
            st->codec->bit_rate = get_be32(pb); /* bit rate */
Fabrice Bellard's avatar
Fabrice Bellard committed
712 713
            get_be32(pb); /* max packet size */
            get_be32(pb); /* avg packet size */
714
            start_time = get_be32(pb); /* start time */
Fabrice Bellard's avatar
Fabrice Bellard committed
715
            get_be32(pb); /* preroll */
716
            duration = get_be32(pb); /* duration */
717 718
            st->start_time = start_time;
            st->duration = duration;
Fabrice Bellard's avatar
Fabrice Bellard committed
719 720 721 722
            get_str8(pb, buf, sizeof(buf)); /* desc */
            get_str8(pb, buf, sizeof(buf)); /* mimetype */
            codec_data_size = get_be32(pb);
            codec_pos = url_ftell(pb);
723
            st->codec->codec_type = CODEC_TYPE_DATA;
Michael Niedermayer's avatar
Michael Niedermayer committed
724
            av_set_pts_info(st, 64, 1, 1000);
Fabrice Bellard's avatar
Fabrice Bellard committed
725 726 727 728

            v = get_be32(pb);
            if (v == MKTAG(0xfd, 'a', 'r', '.')) {
                /* ra type header */
729 730
                if (rm_read_audio_stream_info(s, st, 0))
                    return -1;
Fabrice Bellard's avatar
Fabrice Bellard committed
731
            } else {
732
                int fps, fps2;
Fabrice Bellard's avatar
Fabrice Bellard committed
733 734
                if (get_le32(pb) != MKTAG('V', 'I', 'D', 'O')) {
                fail1:
735
                    av_log(st->codec, AV_LOG_ERROR, "Unsupported video codec\n");
736
                    goto skip;
Fabrice Bellard's avatar
Fabrice Bellard committed
737
                }
738 739 740 741 742 743
                st->codec->codec_tag = get_le32(pb);
//                av_log(NULL, AV_LOG_DEBUG, "%X %X\n", st->codec->codec_tag, MKTAG('R', 'V', '2', '0'));
                if (   st->codec->codec_tag != MKTAG('R', 'V', '1', '0')
                    && st->codec->codec_tag != MKTAG('R', 'V', '2', '0')
                    && st->codec->codec_tag != MKTAG('R', 'V', '3', '0')
                    && st->codec->codec_tag != MKTAG('R', 'V', '4', '0'))
Fabrice Bellard's avatar
Fabrice Bellard committed
744
                    goto fail1;
745 746 747
                st->codec->width = get_be16(pb);
                st->codec->height = get_be16(pb);
                st->codec->time_base.num= 1;
748
                fps= get_be16(pb);
749
                st->codec->codec_type = CODEC_TYPE_VIDEO;
Fabrice Bellard's avatar
Fabrice Bellard committed
750
                get_be32(pb);
751
                fps2= get_be16(pb);
Fabrice Bellard's avatar
Fabrice Bellard committed
752
                get_be16(pb);
753

754
                st->codec->extradata_size= codec_data_size - (url_ftell(pb) - codec_pos);
755 756 757 758 759 760

                if(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){
                    //check is redundant as get_buffer() will catch this
                    av_log(s, AV_LOG_ERROR, "st->codec->extradata_size too large\n");
                    return -1;
                }
761
                st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
762
                get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
763

764
//                av_log(NULL, AV_LOG_DEBUG, "fps= %d fps2= %d\n", fps, fps2);
765
                st->codec->time_base.den = fps * st->codec->time_base.num;
766
                switch(((uint8_t*)st->codec->extradata)[4]>>4){
767 768 769 770
                case 1: st->codec->codec_id = CODEC_ID_RV10; break;
                case 2: st->codec->codec_id = CODEC_ID_RV20; break;
                case 3: st->codec->codec_id = CODEC_ID_RV30; break;
                case 4: st->codec->codec_id = CODEC_ID_RV40; break;
771 772
                default: goto fail1;
                }
Fabrice Bellard's avatar
Fabrice Bellard committed
773
            }
774
skip:
Fabrice Bellard's avatar
Fabrice Bellard committed
775 776 777 778 779 780 781 782 783 784 785 786 787 788
            /* skip codec info */
            size = url_ftell(pb) - codec_pos;
            url_fskip(pb, codec_data_size - size);
            break;
        case MKTAG('D', 'A', 'T', 'A'):
            goto header_end;
        default:
            /* unknown tag: skip it */
            url_fskip(pb, tag_size - 10);
            break;
        }
    }
 header_end:
    rm->nb_packets = get_be32(pb); /* number of packets */
789 790
    if (!rm->nb_packets && (flags & 4))
        rm->nb_packets = 3600 * 25;
Fabrice Bellard's avatar
Fabrice Bellard committed
791 792 793 794 795
    get_be32(pb); /* next data header */
    return 0;

 fail:
    for(i=0;i<s->nb_streams;i++) {
796
        av_free(s->streams[i]);
Fabrice Bellard's avatar
Fabrice Bellard committed
797
    }
798
    return AVERROR_IO;
Fabrice Bellard's avatar
Fabrice Bellard committed
799 800
}

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
static int get_num(ByteIOContext *pb, int *len)
{
    int n, n1;

    n = get_be16(pb);
    (*len)-=2;
    if (n >= 0x4000) {
        return n - 0x4000;
    } else {
        n1 = get_be16(pb);
        (*len)-=2;
        return (n << 16) | n1;
    }
}

816 817 818
/* multiple of 20 bytes for ra144 (ugly) */
#define RAW_PACKET_SIZE 1000

819
static int sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stream_index, int64_t *pos){
Michael Niedermayer's avatar
Michael Niedermayer committed
820 821 822 823
    RMContext *rm = s->priv_data;
    ByteIOContext *pb = &s->pb;
    int len, num, res, i;
    AVStream *st;
Michael Niedermayer's avatar
Michael Niedermayer committed
824
    uint32_t state=0xFFFFFFFF;
Michael Niedermayer's avatar
Michael Niedermayer committed
825 826

    while(!url_feof(pb)){
827
        *pos= url_ftell(pb);
Michael Niedermayer's avatar
Michael Niedermayer committed
828 829 830 831 832 833
        if(rm->remaining_len > 0){
            num= rm->current_stream;
            len= rm->remaining_len;
            *timestamp = AV_NOPTS_VALUE;
            *flags= 0;
        }else{
Michael Niedermayer's avatar
Michael Niedermayer committed
834
            state= (state<<8) + get_byte(pb);
835

Michael Niedermayer's avatar
Michael Niedermayer committed
836 837 838 839 840 841
            if(state == MKBETAG('I', 'N', 'D', 'X')){
                len = get_be16(pb) - 6;
                if(len<0)
                    continue;
                goto skip;
            }
842

Michael Niedermayer's avatar
Michael Niedermayer committed
843
            if(state > (unsigned)0xFFFF || state < 12)
Michael Niedermayer's avatar
Michael Niedermayer committed
844
                continue;
Michael Niedermayer's avatar
Michael Niedermayer committed
845 846 847
            len=state;
            state= 0xFFFFFFFF;

Michael Niedermayer's avatar
Michael Niedermayer committed
848 849 850 851
            num = get_be16(pb);
            *timestamp = get_be32(pb);
            res= get_byte(pb); /* reserved */
            *flags = get_byte(pb); /* flags */
852

853

Michael Niedermayer's avatar
Michael Niedermayer committed
854 855 856 857 858 859 860 861
            len -= 12;
        }
        for(i=0;i<s->nb_streams;i++) {
            st = s->streams[i];
            if (num == st->id)
                break;
        }
        if (i == s->nb_streams) {
Michael Niedermayer's avatar
Michael Niedermayer committed
862
skip:
Michael Niedermayer's avatar
Michael Niedermayer committed
863 864 865 866 867 868
            /* skip packet if unknown number */
            url_fskip(pb, len);
            rm->remaining_len -= len;
            continue;
        }
        *stream_index= i;
869

Michael Niedermayer's avatar
Michael Niedermayer committed
870 871 872 873 874
        return len;
    }
    return -1;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
875 876 877 878 879
static int rm_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    RMContext *rm = s->priv_data;
    ByteIOContext *pb = &s->pb;
    AVStream *st;
Michael Niedermayer's avatar
Michael Niedermayer committed
880
    int i, len, tmp, j;
881
    int64_t timestamp, pos;
882
    uint8_t *ptr;
Michael Niedermayer's avatar
Michael Niedermayer committed
883
    int flags;
Fabrice Bellard's avatar
Fabrice Bellard committed
884

885
    if (rm->audio_pkt_cnt) {
886 887
        // If there are queued audio packet return them first
        st = s->streams[rm->audio_stream_num];
888 889 890
        if (st->codec->codec_id == CODEC_ID_AAC)
            av_get_packet(pb, pkt, rm->sub_packet_lengths[rm->sub_packet_cnt - rm->audio_pkt_cnt]);
        else {
891 892 893 894
        av_new_packet(pkt, st->codec->block_align);
        memcpy(pkt->data, rm->audiobuf + st->codec->block_align *
               (rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - rm->audio_pkt_cnt),
               st->codec->block_align);
895
        }
896 897 898
        rm->audio_pkt_cnt--;
        pkt->flags = 0;
        pkt->stream_index = rm->audio_stream_num;
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
    } else if (rm->old_format) {
        st = s->streams[0];
        if (st->codec->codec_id == CODEC_ID_RA_288) {
            int x, y;

            for (y = 0; y < rm->sub_packet_h; y++)
                for (x = 0; x < rm->sub_packet_h/2; x++)
                    if (get_buffer(pb, rm->audiobuf+x*2*rm->audio_framesize+y*rm->coded_framesize, rm->coded_framesize) <= 0)
                        return AVERROR_IO;
            rm->audio_stream_num = 0;
            rm->audio_pkt_cnt = rm->sub_packet_h * rm->audio_framesize / st->codec->block_align - 1;
            // Release first audio packet
            av_new_packet(pkt, st->codec->block_align);
            memcpy(pkt->data, rm->audiobuf, st->codec->block_align);
            pkt->flags |= PKT_FLAG_KEY; // Mark first packet as keyframe
            pkt->stream_index = 0;
        } else {
            /* just read raw bytes */
            len = RAW_PACKET_SIZE;
            len= av_get_packet(pb, pkt, len);
            pkt->stream_index = 0;
            if (len <= 0) {
                return AVERROR_IO;
            }
            pkt->size = len;
        }
925
    } else {
926
        int seq=1;
927
resync:
928
        len=sync(s, &timestamp, &flags, &i, &pos);
Michael Niedermayer's avatar
Michael Niedermayer committed
929
        if(len<0)
930
            return AVERROR_IO;
Michael Niedermayer's avatar
Michael Niedermayer committed
931 932
        st = s->streams[i];

933
        if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
934 935 936 937
            int h, pic_num, len2, pos;

            h= get_byte(pb); len--;
            if(!(h & 0x40)){
938
                seq = get_byte(pb); len--;
939 940 941 942 943 944
            }

            if((h & 0xc0) == 0x40){
                len2= pos= 0;
            }else{
                len2 = get_num(pb, &len);
945 946 947
                pos = get_num(pb, &len);
            }
            /* picture number */
948 949 950 951 952 953 954 955
            pic_num= get_byte(pb); len--;
            rm->remaining_len= len;
            rm->current_stream= st->id;

//            av_log(NULL, AV_LOG_DEBUG, "%X len:%d pos:%d len2:%d pic_num:%d\n",h, len, pos, len2, pic_num);
            if(len2 && len2<len)
                len=len2;
            rm->remaining_len-= len;
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
            av_get_packet(pb, pkt, len);
        }

        if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
            if ((st->codec->codec_id == CODEC_ID_RA_288) ||
                (st->codec->codec_id == CODEC_ID_COOK)) {
                int x;
                int sps = rm->sub_packet_size;
                int cfs = rm->coded_framesize;
                int h = rm->sub_packet_h;
                int y = rm->sub_packet_cnt;
                int w = rm->audio_framesize;

                if (flags & 2)
                    y = rm->sub_packet_cnt = 0;
                if (!y)
                    rm->audiotimestamp = timestamp;

                switch(st->codec->codec_id) {
                    case CODEC_ID_RA_288:
                        for (x = 0; x < h/2; x++)
                            get_buffer(pb, rm->audiobuf+x*2*w+y*cfs, cfs);
                        break;
                    case CODEC_ID_COOK:
                        for (x = 0; x < w/sps; x++)
                            get_buffer(pb, rm->audiobuf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), sps);
                        break;
                }

                if (++(rm->sub_packet_cnt) < h)
                    goto resync;
                else {
                    rm->sub_packet_cnt = 0;
                    rm->audio_stream_num = i;
                    rm->audio_pkt_cnt = h * w / st->codec->block_align - 1;
                    // Release first audio packet
                    av_new_packet(pkt, st->codec->block_align);
                    memcpy(pkt->data, rm->audiobuf, st->codec->block_align);
                    timestamp = rm->audiotimestamp;
                    flags = 2; // Mark first packet as keyframe
                }
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
            } else if (st->codec->codec_id == CODEC_ID_AAC) {
                int x;
                rm->audio_stream_num = i;
                rm->sub_packet_cnt = (get_be16(pb) & 0xf0) >> 4;
                if (rm->sub_packet_cnt) {
                    for (x = 0; x < rm->sub_packet_cnt; x++)
                        rm->sub_packet_lengths[x] = get_be16(pb);
                    // Release first audio packet
                    rm->audio_pkt_cnt = rm->sub_packet_cnt - 1;
                    av_get_packet(pb, pkt, rm->sub_packet_lengths[0]);
                    flags = 2; // Mark first packet as keyframe
                }
1009 1010
            } else
                av_get_packet(pb, pkt, len);
1011
        }
1012

1013 1014
        if(  (st->discard >= AVDISCARD_NONKEY && !(flags&2))
           || st->discard >= AVDISCARD_ALL){
1015
            av_free_packet(pkt);
1016 1017
            goto resync;
        }
1018

1019
        pkt->stream_index = i;
Michael Niedermayer's avatar
Michael Niedermayer committed
1020 1021

#if 0
1022 1023
        if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
            if(st->codec->codec_id == CODEC_ID_RV20){
Michael Niedermayer's avatar
Michael Niedermayer committed
1024
                int seq= 128*(pkt->data[2]&0x7F) + (pkt->data[3]>>1);
1025
                av_log(NULL, AV_LOG_DEBUG, "%d %"PRId64" %d\n", timestamp, timestamp*512LL/25, seq);
Michael Niedermayer's avatar
Michael Niedermayer committed
1026 1027 1028 1029 1030 1031 1032 1033

                seq |= (timestamp&~0x3FFF);
                if(seq - timestamp >  0x2000) seq -= 0x4000;
                if(seq - timestamp < -0x2000) seq += 0x4000;
            }
        }
#endif
        pkt->pts= timestamp;
1034
        if(flags&2){
Michael Niedermayer's avatar
Michael Niedermayer committed
1035
            pkt->flags |= PKT_FLAG_KEY;
1036
            if((seq&0x7F) == 1)
1037
                av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME);
1038
        }
1039 1040
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
1041
    /* for AC3, needs to swap bytes */
1042
    if (st->codec->codec_id == CODEC_ID_AC3) {
Fabrice Bellard's avatar
Fabrice Bellard committed
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
        ptr = pkt->data;
        for(j=0;j<len;j+=2) {
            tmp = ptr[0];
            ptr[0] = ptr[1];
            ptr[1] = tmp;
                ptr += 2;
        }
    }
    return 0;
}

static int rm_read_close(AVFormatContext *s)
{
1056 1057 1058
    RMContext *rm = s->priv_data;

    av_free(rm->audiobuf);
Fabrice Bellard's avatar
Fabrice Bellard committed
1059 1060 1061
    return 0;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
1062 1063 1064 1065 1066
static int rm_probe(AVProbeData *p)
{
    /* check file header */
    if (p->buf_size <= 32)
        return 0;
1067 1068 1069 1070 1071
    if ((p->buf[0] == '.' && p->buf[1] == 'R' &&
         p->buf[2] == 'M' && p->buf[3] == 'F' &&
         p->buf[4] == 0 && p->buf[5] == 0) ||
        (p->buf[0] == '.' && p->buf[1] == 'r' &&
         p->buf[2] == 'a' && p->buf[3] == 0xfd))
Fabrice Bellard's avatar
Fabrice Bellard committed
1072 1073 1074 1075 1076
        return AVPROBE_SCORE_MAX;
    else
        return 0;
}

1077
static int64_t rm_read_dts(AVFormatContext *s, int stream_index,
Michael Niedermayer's avatar
Michael Niedermayer committed
1078 1079 1080 1081
                               int64_t *ppos, int64_t pos_limit)
{
    RMContext *rm = s->priv_data;
    int64_t pos, dts;
1082
    int stream_index2, flags, len, h;
Michael Niedermayer's avatar
Michael Niedermayer committed
1083 1084

    pos = *ppos;
1085

Michael Niedermayer's avatar
Michael Niedermayer committed
1086 1087 1088 1089 1090 1091
    if(rm->old_format)
        return AV_NOPTS_VALUE;

    url_fseek(&s->pb, pos, SEEK_SET);
    rm->remaining_len=0;
    for(;;){
1092 1093 1094 1095
        int seq=1;
        AVStream *st;

        len=sync(s, &dts, &flags, &stream_index2, &pos);
Michael Niedermayer's avatar
Michael Niedermayer committed
1096 1097
        if(len<0)
            return AV_NOPTS_VALUE;
1098 1099

        st = s->streams[stream_index2];
1100
        if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
1101 1102 1103
            h= get_byte(&s->pb); len--;
            if(!(h & 0x40)){
                seq = get_byte(&s->pb); len--;
Michael Niedermayer's avatar
Michael Niedermayer committed
1104 1105
            }
        }
1106

1107
        if((flags&2) && (seq&0x7F) == 1){
1108
//            av_log(s, AV_LOG_DEBUG, "%d %d-%d %"PRId64" %d\n", flags, stream_index2, stream_index, dts, seq);
1109
            av_add_index_entry(st, pos, dts, 0, 0, AVINDEX_KEYFRAME);
1110 1111 1112 1113
            if(stream_index2 == stream_index)
                break;
        }

Michael Niedermayer's avatar
Michael Niedermayer committed
1114 1115 1116 1117 1118 1119
        url_fskip(&s->pb, len);
    }
    *ppos = pos;
    return dts;
}

1120 1121
#ifdef CONFIG_RM_DEMUXER
AVInputFormat rm_demuxer = {
Fabrice Bellard's avatar
Fabrice Bellard committed
1122 1123 1124 1125 1126 1127 1128
    "rm",
    "rm format",
    sizeof(RMContext),
    rm_probe,
    rm_read_header,
    rm_read_packet,
    rm_read_close,
Michael Niedermayer's avatar
Michael Niedermayer committed
1129 1130
    NULL,
    rm_read_dts,
Fabrice Bellard's avatar
Fabrice Bellard committed
1131
};
1132 1133 1134
#endif
#ifdef CONFIG_RM_MUXER
AVOutputFormat rm_muxer = {
Fabrice Bellard's avatar
Fabrice Bellard committed
1135 1136
    "rm",
    "rm format",
1137
    "application/vnd.rn-realmedia",
Fabrice Bellard's avatar
Fabrice Bellard committed
1138
    "rm,ra",
Fabrice Bellard's avatar
Fabrice Bellard committed
1139
    sizeof(RMContext),
Fabrice Bellard's avatar
Fabrice Bellard committed
1140 1141 1142 1143 1144 1145
    CODEC_ID_AC3,
    CODEC_ID_RV10,
    rm_write_header,
    rm_write_packet,
    rm_write_trailer,
};
1146
#endif