mpeg.c 20.0 KB
Newer Older
F
Fabrice Bellard 已提交
1
/*
2
 * MPEG1/2 mux/demux
F
Fabrice Bellard 已提交
3
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
F
Fabrice Bellard 已提交
4
 *
F
Fabrice Bellard 已提交
5 6 7 8
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
F
Fabrice Bellard 已提交
9
 *
F
Fabrice Bellard 已提交
10
 * This library is distributed in the hope that it will be useful,
F
Fabrice Bellard 已提交
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
F
Fabrice Bellard 已提交
12 13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
F
Fabrice Bellard 已提交
14
 *
F
Fabrice Bellard 已提交
15 16 17
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
F
Fabrice Bellard 已提交
18 19 20 21 22 23 24
 */
#include "avformat.h"

#define MAX_PAYLOAD_SIZE 4096
#define NB_STREAMS 2

typedef struct {
25
    uint8_t buffer[MAX_PAYLOAD_SIZE];
F
Fabrice Bellard 已提交
26
    int buffer_ptr;
27
    uint8_t id;
F
Fabrice Bellard 已提交
28 29
    int max_buffer_size; /* in bytes */
    int packet_number;
30
    int64_t start_pts;
F
Fabrice Bellard 已提交
31 32 33 34 35 36 37 38 39 40 41 42
} StreamInfo;

typedef struct {
    int packet_size; /* required packet size */
    int packet_data_max_size; /* maximum data size inside a packet */
    int packet_number;
    int pack_header_freq;     /* frequency (in packets^-1) at which we send pack headers */
    int system_header_freq;
    int mux_rate; /* bitrate in units of 50 bytes/s */
    /* stream info */
    int audio_bound;
    int video_bound;
43 44
    int is_mpeg2;
    int is_vcd;
F
Fabrice Bellard 已提交
45 46 47 48
} MpegMuxContext;

#define PACK_START_CODE             ((unsigned int)0x000001ba)
#define SYSTEM_HEADER_START_CODE    ((unsigned int)0x000001bb)
49
#define SEQUENCE_END_CODE           ((unsigned int)0x000001b7)
F
Fabrice Bellard 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63
#define PACKET_START_CODE_MASK      ((unsigned int)0xffffff00)
#define PACKET_START_CODE_PREFIX    ((unsigned int)0x00000100)
#define ISO_11172_END_CODE          ((unsigned int)0x000001b9)
  
/* mpeg2 */
#define PROGRAM_STREAM_MAP 0x1bc
#define PRIVATE_STREAM_1   0x1bd
#define PADDING_STREAM     0x1be
#define PRIVATE_STREAM_2   0x1bf


#define AUDIO_ID 0xc0
#define VIDEO_ID 0xe0

64
#ifdef CONFIG_ENCODERS
65 66 67 68
extern AVOutputFormat mpeg1system_mux;
extern AVOutputFormat mpeg1vcd_mux;
extern AVOutputFormat mpeg2vob_mux;

F
Fabrice Bellard 已提交
69
static int put_pack_header(AVFormatContext *ctx, 
70
                           uint8_t *buf, int64_t timestamp)
F
Fabrice Bellard 已提交
71 72 73 74
{
    MpegMuxContext *s = ctx->priv_data;
    PutBitContext pb;
    
A
Alex Beregszaszi 已提交
75
    init_put_bits(&pb, buf, 128);
F
Fabrice Bellard 已提交
76 77

    put_bits(&pb, 32, PACK_START_CODE);
78
    if (s->is_mpeg2) {
79
        put_bits(&pb, 2, 0x1);
80 81 82
    } else {
        put_bits(&pb, 4, 0x2);
    }
83
    put_bits(&pb, 3, (uint32_t)((timestamp >> 30) & 0x07));
F
Fabrice Bellard 已提交
84
    put_bits(&pb, 1, 1);
85
    put_bits(&pb, 15, (uint32_t)((timestamp >> 15) & 0x7fff));
F
Fabrice Bellard 已提交
86
    put_bits(&pb, 1, 1);
87
    put_bits(&pb, 15, (uint32_t)((timestamp) & 0x7fff));
F
Fabrice Bellard 已提交
88
    put_bits(&pb, 1, 1);
89 90 91 92 93
    if (s->is_mpeg2) {
        /* clock extension */
        put_bits(&pb, 9, 0);
        put_bits(&pb, 1, 1);
    }
F
Fabrice Bellard 已提交
94 95 96
    put_bits(&pb, 1, 1);
    put_bits(&pb, 22, s->mux_rate);
    put_bits(&pb, 1, 1);
97 98 99 100
    if (s->is_mpeg2) {
        put_bits(&pb, 5, 0x1f); /* reserved */
        put_bits(&pb, 3, 0); /* stuffing length */
    }
F
Fabrice Bellard 已提交
101
    flush_put_bits(&pb);
102
    return pbBufPtr(&pb) - pb.buf;
F
Fabrice Bellard 已提交
103 104
}

105
static int put_system_header(AVFormatContext *ctx, uint8_t *buf)
F
Fabrice Bellard 已提交
106 107 108 109 110
{
    MpegMuxContext *s = ctx->priv_data;
    int size, rate_bound, i, private_stream_coded, id;
    PutBitContext pb;

A
Alex Beregszaszi 已提交
111
    init_put_bits(&pb, buf, 128);
F
Fabrice Bellard 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

    put_bits(&pb, 32, SYSTEM_HEADER_START_CODE);
    put_bits(&pb, 16, 0);
    put_bits(&pb, 1, 1);
    
    rate_bound = s->mux_rate; /* maximum bit rate of the multiplexed stream */
    put_bits(&pb, 22, rate_bound);
    put_bits(&pb, 1, 1); /* marker */
    put_bits(&pb, 6, s->audio_bound);

    put_bits(&pb, 1, 1); /* variable bitrate */
    put_bits(&pb, 1, 1); /* non constrainted bit stream */
    
    put_bits(&pb, 1, 0); /* audio locked */
    put_bits(&pb, 1, 0); /* video locked */
    put_bits(&pb, 1, 1); /* marker */

    put_bits(&pb, 5, s->video_bound);
    put_bits(&pb, 8, 0xff); /* reserved byte */
    
    /* audio stream info */
    private_stream_coded = 0;
    for(i=0;i<ctx->nb_streams;i++) {
        StreamInfo *stream = ctx->streams[i]->priv_data;
        id = stream->id;
        if (id < 0xc0) {
            /* special case for private streams (AC3 use that) */
            if (private_stream_coded)
                continue;
            private_stream_coded = 1;
            id = 0xbd;
        }
        put_bits(&pb, 8, id); /* stream ID */
        put_bits(&pb, 2, 3);
        if (id < 0xe0) {
            /* audio */
            put_bits(&pb, 1, 0);
            put_bits(&pb, 13, stream->max_buffer_size / 128);
        } else {
            /* video */
            put_bits(&pb, 1, 1);
            put_bits(&pb, 13, stream->max_buffer_size / 1024);
        }
    }
    flush_put_bits(&pb);
157
    size = pbBufPtr(&pb) - pb.buf;
F
Fabrice Bellard 已提交
158 159 160 161 162 163 164 165 166
    /* patch packet size */
    buf[4] = (size - 6) >> 8;
    buf[5] = (size - 6) & 0xff;

    return size;
}

static int mpeg_mux_init(AVFormatContext *ctx)
{
167
    MpegMuxContext *s = ctx->priv_data;
F
Fabrice Bellard 已提交
168 169 170 171 172
    int bitrate, i, mpa_id, mpv_id, ac3_id;
    AVStream *st;
    StreamInfo *stream;

    s->packet_number = 0;
173 174 175 176
    s->is_vcd = (ctx->oformat == &mpeg1vcd_mux);
    s->is_mpeg2 = (ctx->oformat == &mpeg2vob_mux);
    
    if (s->is_vcd)
177 178 179 180
        s->packet_size = 2324; /* VCD packet size */
    else
        s->packet_size = 2048;
        
F
Fabrice Bellard 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    /* startcode(4) + length(2) + flags(1) */
    s->packet_data_max_size = s->packet_size - 7;
    s->audio_bound = 0;
    s->video_bound = 0;
    mpa_id = AUDIO_ID;
    ac3_id = 0x80;
    mpv_id = VIDEO_ID;
    for(i=0;i<ctx->nb_streams;i++) {
        st = ctx->streams[i];
        stream = av_mallocz(sizeof(StreamInfo));
        if (!stream)
            goto fail;
        st->priv_data = stream;

        switch(st->codec.codec_type) {
        case CODEC_TYPE_AUDIO:
            if (st->codec.codec_id == CODEC_ID_AC3)
                stream->id = ac3_id++;
            else
                stream->id = mpa_id++;
            stream->max_buffer_size = 4 * 1024; 
            s->audio_bound++;
            break;
        case CODEC_TYPE_VIDEO:
            stream->id = mpv_id++;
            stream->max_buffer_size = 46 * 1024; 
            s->video_bound++;
            break;
209
        default:
210
            av_abort();
F
Fabrice Bellard 已提交
211 212 213 214 215 216 217 218 219 220 221
        }
    }

    /* we increase slightly the bitrate to take into account the
       headers. XXX: compute it exactly */
    bitrate = 2000;
    for(i=0;i<ctx->nb_streams;i++) {
        st = ctx->streams[i];
        bitrate += st->codec.bit_rate;
    }
    s->mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
222
    
223
    if (s->is_vcd || s->is_mpeg2)
224 225 226 227 228
        /* every packet */
        s->pack_header_freq = 1;
    else
        /* every 2 seconds */
        s->pack_header_freq = 2 * bitrate / s->packet_size / 8;
229 230 231 232

    /* the above seems to make pack_header_freq zero sometimes */
    if (s->pack_header_freq == 0)
       s->pack_header_freq = 1;
233
    
234 235 236 237
    if (s->is_mpeg2)
        /* every 200 packets. Need to look at the spec.  */
        s->system_header_freq = s->pack_header_freq * 40;
    else if (s->is_vcd)
238 239 240 241 242
        /* every 40 packets, this is my invention */
        s->system_header_freq = s->pack_header_freq * 40;
    else
        s->system_header_freq = s->pack_header_freq * 5;
    
F
Fabrice Bellard 已提交
243 244 245 246 247 248 249 250 251
    for(i=0;i<ctx->nb_streams;i++) {
        stream = ctx->streams[i]->priv_data;
        stream->buffer_ptr = 0;
        stream->packet_number = 0;
        stream->start_pts = -1;
    }
    return 0;
 fail:
    for(i=0;i<ctx->nb_streams;i++) {
252
        av_free(ctx->streams[i]->priv_data);
F
Fabrice Bellard 已提交
253 254 255 256 257
    }
    return -ENOMEM;
}

/* flush the packet on stream stream_index */
258
static void flush_packet(AVFormatContext *ctx, int stream_index)
F
Fabrice Bellard 已提交
259 260 261
{
    MpegMuxContext *s = ctx->priv_data;
    StreamInfo *stream = ctx->streams[stream_index]->priv_data;
262
    uint8_t *buf_ptr;
263
    int size, payload_size, startcode, id, len, stuffing_size, i, header_len;
264 265
    int64_t timestamp;
    uint8_t buffer[128];
266
    
F
Fabrice Bellard 已提交
267 268 269 270 271 272 273 274 275
    id = stream->id;
    timestamp = stream->start_pts;

#if 0
    printf("packet ID=%2x PTS=%0.3f\n", 
           id, timestamp / 90000.0);
#endif

    buf_ptr = buffer;
276
    if (((s->packet_number % s->pack_header_freq) == 0)) {
F
Fabrice Bellard 已提交
277 278 279 280 281 282 283 284 285 286 287 288
        /* output pack and systems header if needed */
        size = put_pack_header(ctx, buf_ptr, timestamp);
        buf_ptr += size;
        if ((s->packet_number % s->system_header_freq) == 0) {
            size = put_system_header(ctx, buf_ptr);
            buf_ptr += size;
        }
    }
    size = buf_ptr - buffer;
    put_buffer(&ctx->pb, buffer, size);

    /* packet header */
289 290 291 292 293
    if (s->is_mpeg2) {
        header_len = 8;
    } else {
        header_len = 5;
    }
294
    payload_size = s->packet_size - (size + 6 + header_len);
F
Fabrice Bellard 已提交
295 296 297 298 299 300 301 302 303 304 305 306
    if (id < 0xc0) {
        startcode = PRIVATE_STREAM_1;
        payload_size -= 4;
    } else {
        startcode = 0x100 + id;
    }
    stuffing_size = payload_size - stream->buffer_ptr;
    if (stuffing_size < 0)
        stuffing_size = 0;

    put_be32(&ctx->pb, startcode);

307
    put_be16(&ctx->pb, payload_size + header_len);
F
Fabrice Bellard 已提交
308 309 310
    /* stuffing */
    for(i=0;i<stuffing_size;i++)
        put_byte(&ctx->pb, 0xff);
311 312 313 314 315 316

    if (s->is_mpeg2) {
        put_byte(&ctx->pb, 0x80); /* mpeg2 id */
        put_byte(&ctx->pb, 0x80); /* flags */
        put_byte(&ctx->pb, 0x05); /* header len (only pts is included) */
    }
F
Fabrice Bellard 已提交
317 318 319 320
    put_byte(&ctx->pb, 
             (0x02 << 4) | 
             (((timestamp >> 30) & 0x07) << 1) | 
             1);
321 322
    put_be16(&ctx->pb, (uint16_t)((((timestamp >> 15) & 0x7fff) << 1) | 1));
    put_be16(&ctx->pb, (uint16_t)((((timestamp) & 0x7fff) << 1) | 1));
F
Fabrice Bellard 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349

    if (startcode == PRIVATE_STREAM_1) {
        put_byte(&ctx->pb, id);
        if (id >= 0x80 && id <= 0xbf) {
            /* XXX: need to check AC3 spec */
            put_byte(&ctx->pb, 1);
            put_byte(&ctx->pb, 0);
            put_byte(&ctx->pb, 2);
        }
    }

    /* output data */
    put_buffer(&ctx->pb, stream->buffer, payload_size - stuffing_size);
    put_flush_packet(&ctx->pb);
    
    /* preserve remaining data */
    len = stream->buffer_ptr - payload_size;
    if (len < 0) 
        len = 0;
    memmove(stream->buffer, stream->buffer + stream->buffer_ptr - len, len);
    stream->buffer_ptr = len;

    s->packet_number++;
    stream->packet_number++;
    stream->start_pts = -1;
}

350
static int mpeg_mux_write_packet(AVFormatContext *ctx, int stream_index,
351
                                 const uint8_t *buf, int size, int64_t pts)
F
Fabrice Bellard 已提交
352 353 354 355 356
{
    MpegMuxContext *s = ctx->priv_data;
    AVStream *st = ctx->streams[stream_index];
    StreamInfo *stream = st->priv_data;
    int len;
357
    
F
Fabrice Bellard 已提交
358 359
    while (size > 0) {
        /* set pts */
360
        if (stream->start_pts == -1) {
361
            stream->start_pts = pts;
362
        }
F
Fabrice Bellard 已提交
363 364 365 366 367 368 369 370 371 372
        len = s->packet_data_max_size - stream->buffer_ptr;
        if (len > size)
            len = size;
        memcpy(stream->buffer + stream->buffer_ptr, buf, len);
        stream->buffer_ptr += len;
        buf += len;
        size -= len;
        while (stream->buffer_ptr >= s->packet_data_max_size) {
            /* output the packet */
            if (stream->start_pts == -1)
373
                stream->start_pts = pts;
374
            flush_packet(ctx, stream_index);
F
Fabrice Bellard 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387
        }
    }
    return 0;
}

static int mpeg_mux_end(AVFormatContext *ctx)
{
    StreamInfo *stream;
    int i;

    /* flush each packet */
    for(i=0;i<ctx->nb_streams;i++) {
        stream = ctx->streams[i]->priv_data;
388
        if (stream->buffer_ptr > 0) {
389
            flush_packet(ctx, i);
390
        }
F
Fabrice Bellard 已提交
391 392
    }

393 394 395
    /* End header according to MPEG1 systems standard. We do not write
       it as it is usually not needed by decoders and because it
       complicates MPEG stream concatenation. */
396 397
    //put_be32(&ctx->pb, ISO_11172_END_CODE);
    //put_flush_packet(&ctx->pb);
398 399 400 401

    for(i=0;i<ctx->nb_streams;i++)
        av_freep(&ctx->streams[i]->priv_data);

F
Fabrice Bellard 已提交
402 403
    return 0;
}
404
#endif //CONFIG_ENCODERS
F
Fabrice Bellard 已提交
405 406 407 408 409 410

/*********************************************/
/* demux code */

#define MAX_SYNC_SIZE 100000

411 412
static int mpegps_probe(AVProbeData *p)
{
413
    int code, c, i;
414

415
    code = 0xff;
416 417 418
    /* we search the first start code. If it is a packet start code,
       then we decide it is mpeg ps. We do not send highest value to
       give a chance to mpegts */
419 420 421 422 423
    /* NOTE: the search range was restricted to avoid too many false
       detections */

    if (p->buf_size < 6)
        return 0;
424 425 426 427 428 429 430 431 432 433 434 435 436

    for (i = 0; i < 20; i++) {
        c = p->buf[i];
        code = (code << 8) | c;
        if ((code & 0xffffff00) == 0x100) {
            if (code == PACK_START_CODE ||
                code == SYSTEM_HEADER_START_CODE ||
                (code >= 0x1e0 && code <= 0x1ef) ||
                (code >= 0x1c0 && code <= 0x1df) ||
                code == PRIVATE_STREAM_2 ||
                code == PROGRAM_STREAM_MAP ||
                code == PRIVATE_STREAM_1 ||
                code == PADDING_STREAM)
437
                return AVPROBE_SCORE_MAX - 2;
438 439 440
            else
                return 0;
        }
441 442 443 444 445
    }
    return 0;
}


F
Fabrice Bellard 已提交
446 447 448 449 450
typedef struct MpegDemuxContext {
    int header_state;
} MpegDemuxContext;

static int find_start_code(ByteIOContext *pb, int *size_ptr, 
451
                           uint32_t *header_state)
F
Fabrice Bellard 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
{
    unsigned int state, v;
    int val, n;

    state = *header_state;
    n = *size_ptr;
    while (n > 0) {
        if (url_feof(pb))
            break;
        v = get_byte(pb);
        n--;
        if (state == 0x000001) {
            state = ((state << 8) | v) & 0xffffff;
            val = state;
            goto found;
        }
        state = ((state << 8) | v) & 0xffffff;
    }
    val = -1;
 found:
    *header_state = state;
    *size_ptr = n;
    return val;
}

477 478
static int mpegps_read_header(AVFormatContext *s,
                                  AVFormatParameters *ap)
F
Fabrice Bellard 已提交
479
{
480
    MpegDemuxContext *m = s->priv_data;
F
Fabrice Bellard 已提交
481
    m->header_state = 0xff;
482 483
    s->ctx_flags |= AVFMTCTX_NOHEADER;

484
    /* no need to do more */
F
Fabrice Bellard 已提交
485 486 487
    return 0;
}

488
static int64_t get_pts(ByteIOContext *pb, int c)
F
Fabrice Bellard 已提交
489
{
490
    int64_t pts;
F
Fabrice Bellard 已提交
491 492 493 494
    int val;

    if (c < 0)
        c = get_byte(pb);
495
    pts = (int64_t)((c >> 1) & 0x07) << 30;
F
Fabrice Bellard 已提交
496
    val = get_be16(pb);
497
    pts |= (int64_t)(val >> 1) << 15;
F
Fabrice Bellard 已提交
498
    val = get_be16(pb);
499
    pts |= (int64_t)(val >> 1);
F
Fabrice Bellard 已提交
500 501 502
    return pts;
}

503 504
static int mpegps_read_packet(AVFormatContext *s,
                                  AVPacket *pkt)
F
Fabrice Bellard 已提交
505 506 507
{
    MpegDemuxContext *m = s->priv_data;
    AVStream *st;
508
    int len, size, startcode, i, c, flags, header_len, type, codec_id;
509
    int64_t pts, dts;
F
Fabrice Bellard 已提交
510

511
    /* next start code (should be immediately after) */
F
Fabrice Bellard 已提交
512 513 514 515
 redo:
    m->header_state = 0xff;
    size = MAX_SYNC_SIZE;
    startcode = find_start_code(&s->pb, &size, &m->header_state);
516
    //printf("startcode=%x pos=0x%Lx\n", startcode, url_ftell(&s->pb));
F
Fabrice Bellard 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
    if (startcode < 0)
        return -EIO;
    if (startcode == PACK_START_CODE)
        goto redo;
    if (startcode == SYSTEM_HEADER_START_CODE)
        goto redo;
    if (startcode == PADDING_STREAM ||
        startcode == PRIVATE_STREAM_2) {
        /* skip them */
        len = get_be16(&s->pb);
        url_fskip(&s->pb, len);
        goto redo;
    }
    /* find matching stream */
    if (!((startcode >= 0x1c0 && startcode <= 0x1df) ||
          (startcode >= 0x1e0 && startcode <= 0x1ef) ||
          (startcode == 0x1bd)))
        goto redo;

    len = get_be16(&s->pb);
537 538
    pts = AV_NOPTS_VALUE;
    dts = AV_NOPTS_VALUE;
F
Fabrice Bellard 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
    /* stuffing */
    for(;;) {
        c = get_byte(&s->pb);
        len--;
        /* XXX: for mpeg1, should test only bit 7 */
        if (c != 0xff) 
            break;
    }
    if ((c & 0xc0) == 0x40) {
        /* buffer scale & size */
        get_byte(&s->pb);
        c = get_byte(&s->pb);
        len -= 2;
    }
    if ((c & 0xf0) == 0x20) {
        pts = get_pts(&s->pb, c);
        len -= 4;
    } else if ((c & 0xf0) == 0x30) {
        pts = get_pts(&s->pb, c);
        dts = get_pts(&s->pb, -1);
        len -= 9;
    } else if ((c & 0xc0) == 0x80) {
        /* mpeg 2 PES */
        if ((c & 0x30) != 0) {
            fprintf(stderr, "Encrypted multiplex not handled\n");
            return -EIO;
        }
        flags = get_byte(&s->pb);
        header_len = get_byte(&s->pb);
        len -= 2;
        if (header_len > len)
            goto redo;
571
        if ((flags & 0xc0) == 0x80) {
F
Fabrice Bellard 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
            pts = get_pts(&s->pb, -1);
            header_len -= 5;
            len -= 5;
        } if ((flags & 0xc0) == 0xc0) {
            pts = get_pts(&s->pb, -1);
            dts = get_pts(&s->pb, -1);
            header_len -= 10;
            len -= 10;
        }
        len -= header_len;
        while (header_len > 0) {
            get_byte(&s->pb);
            header_len--;
        }
    }
    if (startcode == 0x1bd) {
        startcode = get_byte(&s->pb);
        len--;
        if (startcode >= 0x80 && startcode <= 0xbf) {
            /* audio: skip header */
            get_byte(&s->pb);
            get_byte(&s->pb);
            get_byte(&s->pb);
            len -= 3;
        }
    }

    /* now find stream */
    for(i=0;i<s->nb_streams;i++) {
        st = s->streams[i];
        if (st->id == startcode)
            goto found;
    }
605 606 607 608 609 610 611 612 613
    if (startcode >= 0x1e0 && startcode <= 0x1ef) {
        type = CODEC_TYPE_VIDEO;
        codec_id = CODEC_ID_MPEG1VIDEO;
    } else if (startcode >= 0x1c0 && startcode <= 0x1df) {
        type = CODEC_TYPE_AUDIO;
        codec_id = CODEC_ID_MP2;
    } else if (startcode >= 0x80 && startcode <= 0x9f) {
        type = CODEC_TYPE_AUDIO;
        codec_id = CODEC_ID_AC3;
614 615 616
    } else if (startcode >= 0xa0 && startcode <= 0xbf) {
        type = CODEC_TYPE_AUDIO;
        codec_id = CODEC_ID_PCM_S16BE;
617 618 619 620 621 622
    } else {
    skip:
        /* skip packet */
        url_fskip(&s->pb, len);
        goto redo;
    }
623 624 625 626
    /* no stream found: add a new stream */
    st = av_new_stream(s, startcode);
    if (!st) 
        goto skip;
627 628
    st->codec.codec_type = type;
    st->codec.codec_id = codec_id;
F
Fabrice Bellard 已提交
629
 found:
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
    if (startcode >= 0xa0 && startcode <= 0xbf) {
        int b1, freq;
        static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 };

        /* for LPCM, we just skip the header and consider it is raw
           audio data */
        if (len <= 3)
            goto skip;
        get_byte(&s->pb); /* emphasis (1), muse(1), reserved(1), frame number(5) */
        b1 = get_byte(&s->pb); /* quant (2), freq(2), reserved(1), channels(3) */
        get_byte(&s->pb); /* dynamic range control (0x80 = off) */
        len -= 3;
        freq = (b1 >> 4) & 3;
        st->codec.sample_rate = lpcm_freq_tab[freq];
        st->codec.channels = 1 + (b1 & 7);
        st->codec.bit_rate = st->codec.channels * st->codec.sample_rate * 2;
    }
F
Fabrice Bellard 已提交
647
    av_new_packet(pkt, len);
648 649
    //printf("\nRead Packet ID: %x PTS: %f Size: %d", startcode,
    //       (float)pts/90000, len);
F
Fabrice Bellard 已提交
650 651
    get_buffer(&s->pb, pkt->data, pkt->size);
    pkt->pts = pts;
652
    pkt->stream_index = st->index;
F
Fabrice Bellard 已提交
653 654 655
    return 0;
}

656
static int mpegps_read_close(AVFormatContext *s)
F
Fabrice Bellard 已提交
657 658 659 660
{
    return 0;
}

661
#ifdef CONFIG_ENCODERS
662
static AVOutputFormat mpeg1system_mux = {
F
Fabrice Bellard 已提交
663
    "mpeg",
664
    "MPEG1 System format",
665
    "video/mpeg",
666 667 668 669 670 671 672 673 674 675 676 677
    "mpg,mpeg",
    sizeof(MpegMuxContext),
    CODEC_ID_MP2,
    CODEC_ID_MPEG1VIDEO,
    mpeg_mux_init,
    mpeg_mux_write_packet,
    mpeg_mux_end,
};

static AVOutputFormat mpeg1vcd_mux = {
    "vcd",
    "MPEG1 System format (VCD)",
678
    "video/mpeg",
679 680 681 682 683 684 685 686 687 688 689 690
    NULL,
    sizeof(MpegMuxContext),
    CODEC_ID_MP2,
    CODEC_ID_MPEG1VIDEO,
    mpeg_mux_init,
    mpeg_mux_write_packet,
    mpeg_mux_end,
};

static AVOutputFormat mpeg2vob_mux = {
    "vob",
    "MPEG2 PS format (VOB)",
691
    "video/mpeg",
692
    "vob",
693
    sizeof(MpegMuxContext),
F
Fabrice Bellard 已提交
694 695 696 697 698
    CODEC_ID_MP2,
    CODEC_ID_MPEG1VIDEO,
    mpeg_mux_init,
    mpeg_mux_write_packet,
    mpeg_mux_end,
699
};
700
#endif //CONFIG_ENCODERS
F
Fabrice Bellard 已提交
701

F
Fabrice Bellard 已提交
702
AVInputFormat mpegps_demux = {
703 704 705 706 707 708 709
    "mpeg",
    "MPEG PS format",
    sizeof(MpegDemuxContext),
    mpegps_probe,
    mpegps_read_header,
    mpegps_read_packet,
    mpegps_read_close,
F
Fabrice Bellard 已提交
710
};
711 712 713

int mpegps_init(void)
{
714
#ifdef CONFIG_ENCODERS
715 716 717
    av_register_output_format(&mpeg1system_mux);
    av_register_output_format(&mpeg1vcd_mux);
    av_register_output_format(&mpeg2vob_mux);
718
#endif //CONFIG_ENCODERS
719 720 721
    av_register_input_format(&mpegps_demux);
    return 0;
}