Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1 | /* |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 2 | * MPEG1/2 mux/demux |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 3 | * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 4 | * |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Lesser General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2 of the License, or (at your option) any later version. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 9 | * |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 10 | * This library is distributed in the hope that it will be useful, |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Lesser General Public License for more details. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 14 | * |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 15 | * You should have received a copy of the GNU Lesser General Public |
| 16 | * License along with this library; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 18 | */ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 19 | #include "avformat.h" |
| 20 | |
| 21 | #define MAX_PAYLOAD_SIZE 4096 |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 22 | //#define DEBUG_SEEK |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 23 | |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 24 | #undef NDEBUG |
| 25 | #include <assert.h> |
| 26 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 27 | typedef struct { |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 28 | uint8_t buffer[MAX_PAYLOAD_SIZE]; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 29 | int buffer_ptr; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 30 | int nb_frames; /* number of starting frame encountered (AC3) */ |
| 31 | int frame_start_offset; /* starting offset of the frame + 1 (0 if none) */ |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 32 | uint8_t id; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 33 | int max_buffer_size; /* in bytes */ |
| 34 | int packet_number; |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 35 | int64_t start_pts; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 36 | int64_t start_dts; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 37 | uint8_t lpcm_header[3]; |
| 38 | int lpcm_align; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 39 | } StreamInfo; |
| 40 | |
| 41 | typedef struct { |
| 42 | int packet_size; /* required packet size */ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 43 | int packet_number; |
| 44 | int pack_header_freq; /* frequency (in packets^-1) at which we send pack headers */ |
| 45 | int system_header_freq; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 46 | int system_header_size; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 47 | int mux_rate; /* bitrate in units of 50 bytes/s */ |
| 48 | /* stream info */ |
| 49 | int audio_bound; |
| 50 | int video_bound; |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 51 | int is_mpeg2; |
| 52 | int is_vcd; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 53 | int is_svcd; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 54 | int scr_stream_index; /* stream from which the system clock is |
| 55 | computed (VBR case) */ |
| 56 | int64_t last_scr; /* current system clock */ |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 57 | |
| 58 | double vcd_padding_bitrate; |
| 59 | int64_t vcd_padding_bytes_written; |
| 60 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 61 | } MpegMuxContext; |
| 62 | |
| 63 | #define PACK_START_CODE ((unsigned int)0x000001ba) |
| 64 | #define SYSTEM_HEADER_START_CODE ((unsigned int)0x000001bb) |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 65 | #define SEQUENCE_END_CODE ((unsigned int)0x000001b7) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 66 | #define PACKET_START_CODE_MASK ((unsigned int)0xffffff00) |
| 67 | #define PACKET_START_CODE_PREFIX ((unsigned int)0x00000100) |
| 68 | #define ISO_11172_END_CODE ((unsigned int)0x000001b9) |
| 69 | |
| 70 | /* mpeg2 */ |
| 71 | #define PROGRAM_STREAM_MAP 0x1bc |
| 72 | #define PRIVATE_STREAM_1 0x1bd |
| 73 | #define PADDING_STREAM 0x1be |
| 74 | #define PRIVATE_STREAM_2 0x1bf |
| 75 | |
| 76 | |
| 77 | #define AUDIO_ID 0xc0 |
| 78 | #define VIDEO_ID 0xe0 |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 79 | #define AC3_ID 0x80 |
| 80 | #define LPCM_ID 0xa0 |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 81 | |
Michael Niedermayer | 8a05bca | 2004-01-17 22:02:07 | [diff] [blame] | 82 | static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; |
| 83 | |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 84 | #ifdef CONFIG_ENCODERS |
Falk Hüffner | 7906085 | 2004-03-24 23:32:48 | [diff] [blame] | 85 | static AVOutputFormat mpeg1system_mux; |
| 86 | static AVOutputFormat mpeg1vcd_mux; |
| 87 | static AVOutputFormat mpeg2vob_mux; |
| 88 | static AVOutputFormat mpeg2svcd_mux; |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 89 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 90 | static int put_pack_header(AVFormatContext *ctx, |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 91 | uint8_t *buf, int64_t timestamp) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 92 | { |
| 93 | MpegMuxContext *s = ctx->priv_data; |
| 94 | PutBitContext pb; |
| 95 | |
Alex Beregszaszi | 117a549 | 2003-10-13 10:59:57 | [diff] [blame] | 96 | init_put_bits(&pb, buf, 128); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 97 | |
| 98 | put_bits(&pb, 32, PACK_START_CODE); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 99 | if (s->is_mpeg2) { |
Måns Rullgård | 8683e4a | 2003-07-15 22:15:37 | [diff] [blame] | 100 | put_bits(&pb, 2, 0x1); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 101 | } else { |
| 102 | put_bits(&pb, 4, 0x2); |
| 103 | } |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 104 | put_bits(&pb, 3, (uint32_t)((timestamp >> 30) & 0x07)); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 105 | put_bits(&pb, 1, 1); |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 106 | put_bits(&pb, 15, (uint32_t)((timestamp >> 15) & 0x7fff)); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 107 | put_bits(&pb, 1, 1); |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 108 | put_bits(&pb, 15, (uint32_t)((timestamp) & 0x7fff)); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 109 | put_bits(&pb, 1, 1); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 110 | if (s->is_mpeg2) { |
| 111 | /* clock extension */ |
| 112 | put_bits(&pb, 9, 0); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 113 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 114 | put_bits(&pb, 1, 1); |
| 115 | put_bits(&pb, 22, s->mux_rate); |
| 116 | put_bits(&pb, 1, 1); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 117 | if (s->is_mpeg2) { |
Michael Niedermayer | 4aa533b | 2004-02-01 13:06:46 | [diff] [blame] | 118 | put_bits(&pb, 1, 1); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 119 | put_bits(&pb, 5, 0x1f); /* reserved */ |
| 120 | put_bits(&pb, 3, 0); /* stuffing length */ |
| 121 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 122 | flush_put_bits(&pb); |
Michael Niedermayer | 1759247 | 2002-02-12 15:43:16 | [diff] [blame] | 123 | return pbBufPtr(&pb) - pb.buf; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 124 | } |
| 125 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 126 | static int put_system_header(AVFormatContext *ctx, uint8_t *buf,int only_for_stream_id) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 127 | { |
| 128 | MpegMuxContext *s = ctx->priv_data; |
| 129 | int size, rate_bound, i, private_stream_coded, id; |
| 130 | PutBitContext pb; |
| 131 | |
Alex Beregszaszi | 117a549 | 2003-10-13 10:59:57 | [diff] [blame] | 132 | init_put_bits(&pb, buf, 128); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 133 | |
| 134 | put_bits(&pb, 32, SYSTEM_HEADER_START_CODE); |
| 135 | put_bits(&pb, 16, 0); |
| 136 | put_bits(&pb, 1, 1); |
| 137 | |
| 138 | rate_bound = s->mux_rate; /* maximum bit rate of the multiplexed stream */ |
| 139 | put_bits(&pb, 22, rate_bound); |
| 140 | put_bits(&pb, 1, 1); /* marker */ |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 141 | if (s->is_vcd && only_for_stream_id==VIDEO_ID) { |
| 142 | /* This header applies only to the video stream (see VCD standard p. IV-7)*/ |
| 143 | put_bits(&pb, 6, 0); |
| 144 | } else |
| 145 | put_bits(&pb, 6, s->audio_bound); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 146 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 147 | if (s->is_vcd) { |
| 148 | /* see VCD standard, p. IV-7*/ |
| 149 | put_bits(&pb, 1, 0); |
| 150 | put_bits(&pb, 1, 1); |
| 151 | } else { |
| 152 | put_bits(&pb, 1, 0); /* variable bitrate*/ |
| 153 | put_bits(&pb, 1, 0); /* non constrainted bit stream */ |
| 154 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 155 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 156 | if (s->is_vcd) { |
| 157 | /* see VCD standard p IV-7 */ |
| 158 | put_bits(&pb, 1, 1); /* audio locked */ |
| 159 | put_bits(&pb, 1, 1); /* video locked */ |
| 160 | } else { |
| 161 | put_bits(&pb, 1, 0); /* audio locked */ |
| 162 | put_bits(&pb, 1, 0); /* video locked */ |
| 163 | } |
| 164 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 165 | put_bits(&pb, 1, 1); /* marker */ |
| 166 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 167 | if (s->is_vcd && only_for_stream_id==AUDIO_ID) { |
| 168 | /* This header applies only to the audio stream (see VCD standard p. IV-7)*/ |
| 169 | put_bits(&pb, 5, 0); |
| 170 | } else |
| 171 | put_bits(&pb, 5, s->video_bound); |
| 172 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 173 | put_bits(&pb, 8, 0xff); /* reserved byte */ |
| 174 | |
| 175 | /* audio stream info */ |
| 176 | private_stream_coded = 0; |
| 177 | for(i=0;i<ctx->nb_streams;i++) { |
| 178 | StreamInfo *stream = ctx->streams[i]->priv_data; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 179 | |
| 180 | /* For VCDs, only include the stream info for the stream |
| 181 | that the pack which contains this system belongs to. |
| 182 | (see VCD standard p. IV-7) */ |
| 183 | if ( !s->is_vcd || stream->id==only_for_stream_id |
| 184 | || only_for_stream_id==0) { |
| 185 | |
| 186 | id = stream->id; |
| 187 | if (id < 0xc0) { |
| 188 | /* special case for private streams (AC3 use that) */ |
| 189 | if (private_stream_coded) |
| 190 | continue; |
| 191 | private_stream_coded = 1; |
| 192 | id = 0xbd; |
| 193 | } |
| 194 | put_bits(&pb, 8, id); /* stream ID */ |
| 195 | put_bits(&pb, 2, 3); |
| 196 | if (id < 0xe0) { |
| 197 | /* audio */ |
| 198 | put_bits(&pb, 1, 0); |
| 199 | put_bits(&pb, 13, stream->max_buffer_size / 128); |
| 200 | } else { |
| 201 | /* video */ |
| 202 | put_bits(&pb, 1, 1); |
| 203 | put_bits(&pb, 13, stream->max_buffer_size / 1024); |
| 204 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | flush_put_bits(&pb); |
Michael Niedermayer | 1759247 | 2002-02-12 15:43:16 | [diff] [blame] | 208 | size = pbBufPtr(&pb) - pb.buf; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 209 | /* patch packet size */ |
| 210 | buf[4] = (size - 6) >> 8; |
| 211 | buf[5] = (size - 6) & 0xff; |
| 212 | |
| 213 | return size; |
| 214 | } |
| 215 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 216 | static int get_system_header_size(AVFormatContext *ctx) |
| 217 | { |
| 218 | int buf_index, i, private_stream_coded; |
| 219 | StreamInfo *stream; |
| 220 | |
| 221 | buf_index = 12; |
| 222 | private_stream_coded = 0; |
| 223 | for(i=0;i<ctx->nb_streams;i++) { |
| 224 | stream = ctx->streams[i]->priv_data; |
| 225 | if (stream->id < 0xc0) { |
| 226 | if (private_stream_coded) |
| 227 | continue; |
| 228 | private_stream_coded = 1; |
| 229 | } |
| 230 | buf_index += 3; |
| 231 | } |
| 232 | return buf_index; |
| 233 | } |
| 234 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 235 | static int mpeg_mux_init(AVFormatContext *ctx) |
| 236 | { |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 237 | MpegMuxContext *s = ctx->priv_data; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 238 | int bitrate, i, mpa_id, mpv_id, ac3_id, lpcm_id, j; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 239 | AVStream *st; |
| 240 | StreamInfo *stream; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 241 | int audio_bitrate; |
| 242 | int video_bitrate; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 243 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 244 | s->packet_number = 0; |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 245 | s->is_vcd = (ctx->oformat == &mpeg1vcd_mux); |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 246 | s->is_svcd = (ctx->oformat == &mpeg2svcd_mux); |
| 247 | s->is_mpeg2 = (ctx->oformat == &mpeg2vob_mux || ctx->oformat == &mpeg2svcd_mux); |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 248 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 249 | if (s->is_vcd || s->is_svcd) |
| 250 | s->packet_size = 2324; /* VCD/SVCD packet size */ |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 251 | else |
| 252 | s->packet_size = 2048; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 253 | |
| 254 | s->vcd_padding_bytes_written = 0; |
| 255 | s->vcd_padding_bitrate=0; |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 256 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 257 | s->audio_bound = 0; |
| 258 | s->video_bound = 0; |
| 259 | mpa_id = AUDIO_ID; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 260 | ac3_id = AC3_ID; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 261 | mpv_id = VIDEO_ID; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 262 | lpcm_id = LPCM_ID; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 263 | s->scr_stream_index = -1; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 264 | for(i=0;i<ctx->nb_streams;i++) { |
| 265 | st = ctx->streams[i]; |
| 266 | stream = av_mallocz(sizeof(StreamInfo)); |
| 267 | if (!stream) |
| 268 | goto fail; |
| 269 | st->priv_data = stream; |
| 270 | |
| 271 | switch(st->codec.codec_type) { |
| 272 | case CODEC_TYPE_AUDIO: |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 273 | if (st->codec.codec_id == CODEC_ID_AC3) { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 274 | stream->id = ac3_id++; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 275 | } else if (st->codec.codec_id == CODEC_ID_PCM_S16BE) { |
| 276 | stream->id = lpcm_id++; |
| 277 | for(j = 0; j < 4; j++) { |
| 278 | if (lpcm_freq_tab[j] == st->codec.sample_rate) |
| 279 | break; |
| 280 | } |
| 281 | if (j == 4) |
| 282 | goto fail; |
| 283 | if (st->codec.channels > 8) |
| 284 | return -1; |
| 285 | stream->lpcm_header[0] = 0x0c; |
| 286 | stream->lpcm_header[1] = (st->codec.channels - 1) | (j << 4); |
| 287 | stream->lpcm_header[2] = 0x80; |
| 288 | stream->lpcm_align = st->codec.channels * 2; |
| 289 | } else { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 290 | stream->id = mpa_id++; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 291 | } |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 292 | |
| 293 | /* This value HAS to be used for VCD (see VCD standard, p. IV-7). |
| 294 | Right now it is also used for everything else.*/ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 295 | stream->max_buffer_size = 4 * 1024; |
| 296 | s->audio_bound++; |
| 297 | break; |
| 298 | case CODEC_TYPE_VIDEO: |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 299 | /* by default, video is used for the SCR computation */ |
| 300 | if (s->scr_stream_index == -1) |
| 301 | s->scr_stream_index = i; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 302 | stream->id = mpv_id++; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 303 | if (s->is_vcd) |
| 304 | /* see VCD standard, p. IV-7*/ |
| 305 | stream->max_buffer_size = 46 * 1024; |
| 306 | else |
| 307 | /* This value HAS to be used for SVCD (see SVCD standard, p. 26 V.2.3.2). |
| 308 | Right now it is also used for everything else.*/ |
| 309 | stream->max_buffer_size = 230 * 1024; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 310 | s->video_bound++; |
| 311 | break; |
Philip Gladstone | ac5e6a5 | 2002-05-09 01:19:33 | [diff] [blame] | 312 | default: |
Philip Gladstone | 42343f7 | 2002-09-12 02:34:01 | [diff] [blame] | 313 | av_abort(); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 314 | } |
| 315 | } |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 316 | /* if no SCR, use first stream (audio) */ |
| 317 | if (s->scr_stream_index == -1) |
| 318 | s->scr_stream_index = 0; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 319 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 320 | bitrate = 0; |
| 321 | audio_bitrate = 0; |
| 322 | video_bitrate = 0; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 323 | for(i=0;i<ctx->nb_streams;i++) { |
| 324 | st = ctx->streams[i]; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 325 | stream = (StreamInfo*) st->priv_data; |
| 326 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 327 | bitrate += st->codec.bit_rate; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 328 | |
| 329 | if (stream->id==AUDIO_ID) |
| 330 | audio_bitrate += st->codec.bit_rate; |
| 331 | else if (stream->id==VIDEO_ID) |
| 332 | video_bitrate += st->codec.bit_rate; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 333 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 334 | |
| 335 | if (s->is_vcd) { |
| 336 | double overhead_rate; |
| 337 | |
| 338 | /* The VCD standard mandates that the mux_rate field is 3528 |
| 339 | (see standard p. IV-6). |
| 340 | The value is actually "wrong", i.e. if you calculate |
| 341 | it using the normal formula and the 75 sectors per second transfer |
| 342 | rate you get a different value because the real pack size is 2324, |
| 343 | not 2352. But the standard explicitly specifies that the mux_rate |
| 344 | field in the header must have this value.*/ |
| 345 | s->mux_rate=2352 * 75 / 50; /* = 3528*/ |
| 346 | |
| 347 | /* The VCD standard states that the muxed stream must be |
| 348 | exactly 75 packs / second (the data rate of a single speed cdrom). |
| 349 | Since the video bitrate (probably 1150000 bits/sec) will be below |
| 350 | the theoretical maximum we have to add some padding packets |
| 351 | to make up for the lower data rate. |
| 352 | (cf. VCD standard p. IV-6 )*/ |
| 353 | |
| 354 | /* Add the header overhead to the data rate. |
| 355 | 2279 data bytes per audio pack, 2294 data bytes per video pack*/ |
| 356 | overhead_rate = ((audio_bitrate / 8.0) / 2279) * (2324 - 2279); |
| 357 | overhead_rate += ((video_bitrate / 8.0) / 2294) * (2324 - 2294); |
| 358 | overhead_rate *= 8; |
| 359 | |
| 360 | /* Add padding so that the full bitrate is 2324*75 bytes/sec */ |
| 361 | s->vcd_padding_bitrate = 2324 * 75 * 8 - (bitrate + overhead_rate); |
| 362 | |
| 363 | } else { |
| 364 | /* we increase slightly the bitrate to take into account the |
| 365 | headers. XXX: compute it exactly */ |
| 366 | bitrate += 2000; |
| 367 | s->mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50); |
| 368 | } |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 369 | |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 370 | if (s->is_vcd || s->is_mpeg2) |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 371 | /* every packet */ |
| 372 | s->pack_header_freq = 1; |
| 373 | else |
| 374 | /* every 2 seconds */ |
| 375 | s->pack_header_freq = 2 * bitrate / s->packet_size / 8; |
Michael Niedermayer | b623bbc | 2003-10-28 10:55:15 | [diff] [blame] | 376 | |
| 377 | /* the above seems to make pack_header_freq zero sometimes */ |
| 378 | if (s->pack_header_freq == 0) |
| 379 | s->pack_header_freq = 1; |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 380 | |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 381 | if (s->is_mpeg2) |
| 382 | /* every 200 packets. Need to look at the spec. */ |
| 383 | s->system_header_freq = s->pack_header_freq * 40; |
| 384 | else if (s->is_vcd) |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 385 | /* the standard mandates that there are only two system headers |
| 386 | in the whole file: one in the first packet of each stream. |
| 387 | (see standard p. IV-7 and IV-8) */ |
| 388 | s->system_header_freq = 0x7fffffff; |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 389 | else |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 390 | s->system_header_freq = s->pack_header_freq * 5; |
| 391 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 392 | for(i=0;i<ctx->nb_streams;i++) { |
| 393 | stream = ctx->streams[i]->priv_data; |
| 394 | stream->buffer_ptr = 0; |
| 395 | stream->packet_number = 0; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 396 | stream->start_pts = AV_NOPTS_VALUE; |
| 397 | stream->start_dts = AV_NOPTS_VALUE; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 398 | } |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 399 | s->system_header_size = get_system_header_size(ctx); |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 400 | s->last_scr = 0; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 401 | return 0; |
| 402 | fail: |
| 403 | for(i=0;i<ctx->nb_streams;i++) { |
Fabrice Bellard | 1ea4f59 | 2002-05-18 23:11:09 | [diff] [blame] | 404 | av_free(ctx->streams[i]->priv_data); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 405 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 406 | return -ENOMEM; |
| 407 | } |
| 408 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 409 | static inline void put_timestamp(ByteIOContext *pb, int id, int64_t timestamp) |
| 410 | { |
| 411 | put_byte(pb, |
| 412 | (id << 4) | |
| 413 | (((timestamp >> 30) & 0x07) << 1) | |
| 414 | 1); |
| 415 | put_be16(pb, (uint16_t)((((timestamp >> 15) & 0x7fff) << 1) | 1)); |
| 416 | put_be16(pb, (uint16_t)((((timestamp) & 0x7fff) << 1) | 1)); |
| 417 | } |
| 418 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 419 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 420 | /* return the number of padding bytes that should be inserted into |
| 421 | the multiplexed stream.*/ |
| 422 | static int get_vcd_padding_size(AVFormatContext *ctx, int64_t pts) |
| 423 | { |
| 424 | MpegMuxContext *s = ctx->priv_data; |
| 425 | int pad_bytes = 0; |
| 426 | |
| 427 | if (s->vcd_padding_bitrate > 0 && pts!=AV_NOPTS_VALUE) |
| 428 | { |
| 429 | int64_t full_pad_bytes; |
| 430 | |
| 431 | full_pad_bytes = (int64_t)((s->vcd_padding_bitrate * (pts / 90000.0)) / 8.0); |
| 432 | pad_bytes = (int) (full_pad_bytes - s->vcd_padding_bytes_written); |
| 433 | |
| 434 | if (pad_bytes<0) |
| 435 | /* might happen if we have already padded to a later timestamp. This |
| 436 | can occur if another stream has already advanced further.*/ |
| 437 | pad_bytes=0; |
| 438 | } |
| 439 | |
| 440 | return pad_bytes; |
| 441 | } |
| 442 | |
| 443 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 444 | /* return the exact available payload size for the next packet for |
| 445 | stream 'stream_index'. 'pts' and 'dts' are only used to know if |
| 446 | timestamps are needed in the packet header. */ |
| 447 | static int get_packet_payload_size(AVFormatContext *ctx, int stream_index, |
| 448 | int64_t pts, int64_t dts) |
| 449 | { |
| 450 | MpegMuxContext *s = ctx->priv_data; |
| 451 | int buf_index; |
| 452 | StreamInfo *stream; |
| 453 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 454 | stream = ctx->streams[stream_index]->priv_data; |
| 455 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 456 | buf_index = 0; |
| 457 | if (((s->packet_number % s->pack_header_freq) == 0)) { |
| 458 | /* pack header size */ |
| 459 | if (s->is_mpeg2) |
| 460 | buf_index += 14; |
| 461 | else |
| 462 | buf_index += 12; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 463 | |
| 464 | if (s->is_vcd) { |
| 465 | /* there is exactly one system header for each stream in a VCD MPEG, |
| 466 | One in the very first video packet and one in the very first |
| 467 | audio packet (see VCD standard p. IV-7 and IV-8).*/ |
| 468 | |
| 469 | if (stream->packet_number==0) |
| 470 | /* The system headers refer only to the stream they occur in, |
| 471 | so they have a constant size.*/ |
| 472 | buf_index += 15; |
| 473 | |
| 474 | } else { |
| 475 | if ((s->packet_number % s->system_header_freq) == 0) |
| 476 | buf_index += s->system_header_size; |
| 477 | } |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 478 | } |
| 479 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 480 | if ((s->is_vcd && stream->packet_number==0) |
| 481 | || (s->is_svcd && s->packet_number==0)) |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 482 | /* the first pack of each stream contains only the pack header, |
| 483 | the system header and some padding (see VCD standard p. IV-6) |
| 484 | Add the padding size, so that the actual payload becomes 0.*/ |
| 485 | buf_index += s->packet_size - buf_index; |
| 486 | else { |
| 487 | /* packet header size */ |
| 488 | buf_index += 6; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 489 | if (s->is_mpeg2) { |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 490 | buf_index += 3; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 491 | if (stream->packet_number==0) |
| 492 | buf_index += 3; /* PES extension */ |
| 493 | buf_index += 1; /* obligatory stuffing byte */ |
| 494 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 495 | if (pts != AV_NOPTS_VALUE) { |
| 496 | if (dts != pts) |
| 497 | buf_index += 5 + 5; |
| 498 | else |
| 499 | buf_index += 5; |
| 500 | |
| 501 | } else { |
| 502 | if (!s->is_mpeg2) |
| 503 | buf_index++; |
Fabrice Bellard | 044007c | 2003-12-16 14:00:18 | [diff] [blame] | 504 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 505 | |
| 506 | if (stream->id < 0xc0) { |
| 507 | /* AC3/LPCM private data header */ |
| 508 | buf_index += 4; |
| 509 | if (stream->id >= 0xa0) { |
| 510 | int n; |
| 511 | buf_index += 3; |
| 512 | /* NOTE: we round the payload size to an integer number of |
| 513 | LPCM samples */ |
| 514 | n = (s->packet_size - buf_index) % stream->lpcm_align; |
| 515 | if (n) |
| 516 | buf_index += (stream->lpcm_align - n); |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | if (s->is_vcd && stream->id == AUDIO_ID) |
| 521 | /* The VCD standard demands that 20 zero bytes follow |
| 522 | each audio packet (see standard p. IV-8).*/ |
| 523 | buf_index+=20; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 524 | } |
| 525 | return s->packet_size - buf_index; |
| 526 | } |
| 527 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 528 | /* Write an MPEG padding packet header. */ |
| 529 | static int put_padding_header(AVFormatContext *ctx,uint8_t* buf, int full_padding_size) |
| 530 | { |
| 531 | MpegMuxContext *s = ctx->priv_data; |
| 532 | int size = full_padding_size - 6; /* subtract header length */ |
| 533 | |
| 534 | buf[0] = (uint8_t)(PADDING_STREAM >> 24); |
| 535 | buf[1] = (uint8_t)(PADDING_STREAM >> 16); |
| 536 | buf[2] = (uint8_t)(PADDING_STREAM >> 8); |
| 537 | buf[3] = (uint8_t)(PADDING_STREAM); |
| 538 | buf[4] = (uint8_t)(size >> 8); |
| 539 | buf[5] = (uint8_t)(size & 0xff); |
| 540 | |
| 541 | if (!s->is_mpeg2) { |
| 542 | buf[6] = 0x0f; |
| 543 | return 7; |
| 544 | } else |
| 545 | return 6; |
| 546 | } |
| 547 | |
| 548 | static void put_padding_packet(AVFormatContext *ctx, ByteIOContext *pb,int packet_bytes) |
| 549 | { |
| 550 | uint8_t buffer[7]; |
| 551 | int size, i; |
| 552 | |
| 553 | size = put_padding_header(ctx,buffer, packet_bytes); |
| 554 | put_buffer(pb, buffer, size); |
| 555 | packet_bytes -= size; |
| 556 | |
| 557 | for(i=0;i<packet_bytes;i++) |
| 558 | put_byte(pb, 0xff); |
| 559 | } |
| 560 | |
| 561 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 562 | /* flush the packet on stream stream_index */ |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 563 | static void flush_packet(AVFormatContext *ctx, int stream_index, |
| 564 | int64_t pts, int64_t dts, int64_t scr) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 565 | { |
| 566 | MpegMuxContext *s = ctx->priv_data; |
| 567 | StreamInfo *stream = ctx->streams[stream_index]->priv_data; |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 568 | uint8_t *buf_ptr; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 569 | int size, payload_size, startcode, id, stuffing_size, i, header_len; |
| 570 | int packet_size; |
Zdenek Kabelac | 0c1a9ed | 2003-02-11 16:35:48 | [diff] [blame] | 571 | uint8_t buffer[128]; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 572 | int zero_trail_bytes = 0; |
| 573 | int pad_packet_bytes = 0; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 574 | int pes_flags; |
| 575 | int general_pack = 0; /*"general" pack without data specific to one stream?*/ |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 576 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 577 | id = stream->id; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 578 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 579 | #if 0 |
| 580 | printf("packet ID=%2x PTS=%0.3f\n", |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 581 | id, pts / 90000.0); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 582 | #endif |
| 583 | |
| 584 | buf_ptr = buffer; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 585 | |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 586 | if (((s->packet_number % s->pack_header_freq) == 0)) { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 587 | /* output pack and systems header if needed */ |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 588 | size = put_pack_header(ctx, buf_ptr, scr); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 589 | buf_ptr += size; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 590 | |
| 591 | if (s->is_vcd) { |
| 592 | /* there is exactly one system header for each stream in a VCD MPEG, |
| 593 | One in the very first video packet and one in the very first |
| 594 | audio packet (see VCD standard p. IV-7 and IV-8).*/ |
| 595 | |
| 596 | if (stream->packet_number==0) { |
| 597 | size = put_system_header(ctx, buf_ptr, id); |
| 598 | buf_ptr += size; |
| 599 | } |
| 600 | } else { |
| 601 | if ((s->packet_number % s->system_header_freq) == 0) { |
| 602 | size = put_system_header(ctx, buf_ptr, 0); |
| 603 | buf_ptr += size; |
| 604 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 605 | } |
| 606 | } |
| 607 | size = buf_ptr - buffer; |
| 608 | put_buffer(&ctx->pb, buffer, size); |
| 609 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 610 | packet_size = s->packet_size - size; |
| 611 | |
| 612 | if (s->is_vcd && id == AUDIO_ID) |
| 613 | /* The VCD standard demands that 20 zero bytes follow |
| 614 | each audio pack (see standard p. IV-8).*/ |
| 615 | zero_trail_bytes += 20; |
| 616 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 617 | if ((s->is_vcd && stream->packet_number==0) |
| 618 | || (s->is_svcd && s->packet_number==0)) { |
| 619 | /* for VCD the first pack of each stream contains only the pack header, |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 620 | the system header and lots of padding (see VCD standard p. IV-6). |
| 621 | In the case of an audio pack, 20 zero bytes are also added at |
| 622 | the end.*/ |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 623 | /* For SVCD we fill the very first pack to increase compatibility with |
| 624 | some DVD players. Not mandated by the standard.*/ |
| 625 | if (s->is_svcd) |
| 626 | general_pack = 1; /* the system header refers to both streams and no stream data*/ |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 627 | pad_packet_bytes = packet_size - zero_trail_bytes; |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 628 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 629 | |
| 630 | packet_size -= pad_packet_bytes + zero_trail_bytes; |
| 631 | |
| 632 | if (packet_size > 0) { |
| 633 | |
| 634 | /* packet header size */ |
| 635 | packet_size -= 6; |
| 636 | |
| 637 | /* packet header */ |
| 638 | if (s->is_mpeg2) { |
| 639 | header_len = 3; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 640 | if (stream->packet_number==0) |
| 641 | header_len += 3; /* PES extension */ |
| 642 | header_len += 1; /* obligatory stuffing byte */ |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 643 | } else { |
| 644 | header_len = 0; |
| 645 | } |
| 646 | if (pts != AV_NOPTS_VALUE) { |
| 647 | if (dts != pts) |
| 648 | header_len += 5 + 5; |
| 649 | else |
| 650 | header_len += 5; |
| 651 | } else { |
| 652 | if (!s->is_mpeg2) |
| 653 | header_len++; |
| 654 | } |
| 655 | |
| 656 | payload_size = packet_size - header_len; |
| 657 | if (id < 0xc0) { |
| 658 | startcode = PRIVATE_STREAM_1; |
| 659 | payload_size -= 4; |
| 660 | if (id >= 0xa0) |
| 661 | payload_size -= 3; |
| 662 | } else { |
| 663 | startcode = 0x100 + id; |
| 664 | } |
| 665 | |
| 666 | stuffing_size = payload_size - stream->buffer_ptr; |
| 667 | if (stuffing_size < 0) |
| 668 | stuffing_size = 0; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 669 | if (stuffing_size > 16) { /*<=16 for MPEG-1, <=32 for MPEG-2*/ |
| 670 | pad_packet_bytes += stuffing_size; |
| 671 | packet_size -= stuffing_size; |
| 672 | payload_size -= stuffing_size; |
| 673 | stuffing_size = 0; |
| 674 | } |
| 675 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 676 | put_be32(&ctx->pb, startcode); |
| 677 | |
| 678 | put_be16(&ctx->pb, packet_size); |
| 679 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 680 | if (!s->is_mpeg2) |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 681 | for(i=0;i<stuffing_size;i++) |
| 682 | put_byte(&ctx->pb, 0xff); |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 683 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 684 | if (s->is_mpeg2) { |
| 685 | put_byte(&ctx->pb, 0x80); /* mpeg2 id */ |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 686 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 687 | pes_flags=0; |
| 688 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 689 | if (pts != AV_NOPTS_VALUE) { |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 690 | pes_flags |= 0x80; |
| 691 | if (dts != pts) |
| 692 | pes_flags |= 0x40; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 693 | } |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 694 | |
| 695 | /* Both the MPEG-2 and the SVCD standards demand that the |
| 696 | P-STD_buffer_size field be included in the first packet of |
| 697 | every stream. (see SVCD standard p. 26 V.2.3.1 and V.2.3.2 |
| 698 | and MPEG-2 standard 2.7.7) */ |
| 699 | if (stream->packet_number == 0) |
| 700 | pes_flags |= 0x01; |
| 701 | |
| 702 | put_byte(&ctx->pb, pes_flags); /* flags */ |
| 703 | put_byte(&ctx->pb, header_len - 3 + stuffing_size); |
| 704 | |
| 705 | if (pes_flags & 0x80) /*write pts*/ |
| 706 | put_timestamp(&ctx->pb, (pes_flags & 0x40) ? 0x03 : 0x02, pts); |
| 707 | if (pes_flags & 0x40) /*write dts*/ |
| 708 | put_timestamp(&ctx->pb, 0x01, dts); |
| 709 | |
| 710 | if (pes_flags & 0x01) { /*write pes extension*/ |
| 711 | put_byte(&ctx->pb, 0x10); /* flags */ |
| 712 | |
| 713 | /* P-STD buffer info */ |
| 714 | if (id == AUDIO_ID) |
| 715 | put_be16(&ctx->pb, 0x4000 | stream->max_buffer_size/128); |
| 716 | else |
| 717 | put_be16(&ctx->pb, 0x6000 | stream->max_buffer_size/1024); |
| 718 | } |
| 719 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 720 | } else { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 721 | if (pts != AV_NOPTS_VALUE) { |
| 722 | if (dts != pts) { |
| 723 | put_timestamp(&ctx->pb, 0x03, pts); |
| 724 | put_timestamp(&ctx->pb, 0x01, dts); |
| 725 | } else { |
| 726 | put_timestamp(&ctx->pb, 0x02, pts); |
| 727 | } |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 728 | } else { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 729 | put_byte(&ctx->pb, 0x0f); |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 730 | } |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 731 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 732 | |
| 733 | if (startcode == PRIVATE_STREAM_1) { |
| 734 | put_byte(&ctx->pb, id); |
| 735 | if (id >= 0xa0) { |
| 736 | /* LPCM (XXX: check nb_frames) */ |
| 737 | put_byte(&ctx->pb, 7); |
| 738 | put_be16(&ctx->pb, 4); /* skip 3 header bytes */ |
| 739 | put_byte(&ctx->pb, stream->lpcm_header[0]); |
| 740 | put_byte(&ctx->pb, stream->lpcm_header[1]); |
| 741 | put_byte(&ctx->pb, stream->lpcm_header[2]); |
| 742 | } else { |
| 743 | /* AC3 */ |
| 744 | put_byte(&ctx->pb, stream->nb_frames); |
| 745 | put_be16(&ctx->pb, stream->frame_start_offset); |
| 746 | } |
| 747 | } |
| 748 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 749 | if (s->is_mpeg2) { |
| 750 | /* special stuffing byte that is always written |
| 751 | to prevent accidental generation of start codes. */ |
| 752 | put_byte(&ctx->pb, 0xff); |
| 753 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 754 | for(i=0;i<stuffing_size;i++) |
| 755 | put_byte(&ctx->pb, 0xff); |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 756 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 757 | |
| 758 | /* output data */ |
| 759 | put_buffer(&ctx->pb, stream->buffer, payload_size - stuffing_size); |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 760 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 761 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 762 | if (pad_packet_bytes > 0) |
| 763 | put_padding_packet(ctx,&ctx->pb, pad_packet_bytes); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 764 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 765 | for(i=0;i<zero_trail_bytes;i++) |
| 766 | put_byte(&ctx->pb, 0x00); |
| 767 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 768 | put_flush_packet(&ctx->pb); |
| 769 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 770 | s->packet_number++; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 771 | |
| 772 | /* only increase the stream packet number if this pack actually contains |
| 773 | something that is specific to this stream! I.e. a dedicated header |
| 774 | or some data.*/ |
| 775 | if (!general_pack) |
| 776 | stream->packet_number++; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 777 | stream->nb_frames = 0; |
| 778 | stream->frame_start_offset = 0; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 779 | } |
| 780 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 781 | static void put_vcd_padding_sector(AVFormatContext *ctx) |
| 782 | { |
| 783 | /* There are two ways to do this padding: writing a sector/pack |
| 784 | of 0 values, or writing an MPEG padding pack. Both seem to |
| 785 | work with most decoders, BUT the VCD standard only allows a 0-sector |
| 786 | (see standard p. IV-4, IV-5). |
| 787 | So a 0-sector it is...*/ |
| 788 | |
| 789 | MpegMuxContext *s = ctx->priv_data; |
| 790 | int i; |
| 791 | |
| 792 | for(i=0;i<s->packet_size;i++) |
| 793 | put_byte(&ctx->pb, 0); |
| 794 | |
| 795 | s->vcd_padding_bytes_written += s->packet_size; |
| 796 | |
| 797 | put_flush_packet(&ctx->pb); |
| 798 | |
| 799 | /* increasing the packet number is correct. The SCR of the following packs |
| 800 | is calculated from the packet_number and it has to include the padding |
| 801 | sector (it represents the sector index, not the MPEG pack index) |
| 802 | (see VCD standard p. IV-6)*/ |
| 803 | s->packet_number++; |
| 804 | } |
| 805 | |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 806 | /* XXX: move that to upper layer */ |
| 807 | /* XXX: we assume that there are always 'max_b_frames' between |
| 808 | reference frames. A better solution would be to use the AVFrame pts |
| 809 | field */ |
| 810 | static void compute_pts_dts(AVStream *st, int64_t *ppts, int64_t *pdts, |
| 811 | int64_t timestamp) |
| 812 | { |
| 813 | int frame_delay; |
| 814 | int64_t pts, dts; |
| 815 | |
| 816 | if (st->codec.codec_type == CODEC_TYPE_VIDEO && |
| 817 | st->codec.max_b_frames != 0) { |
| 818 | frame_delay = (st->codec.frame_rate_base * 90000LL) / |
| 819 | st->codec.frame_rate; |
| 820 | if (timestamp == 0) { |
| 821 | /* specific case for first frame : DTS just before */ |
| 822 | pts = timestamp; |
| 823 | dts = timestamp - frame_delay; |
| 824 | } else { |
| 825 | timestamp -= frame_delay; |
| 826 | if (st->codec.coded_frame->pict_type == FF_B_TYPE) { |
| 827 | /* B frames has identical pts/dts */ |
| 828 | pts = timestamp; |
| 829 | dts = timestamp; |
| 830 | } else { |
| 831 | /* a reference frame has a pts equal to the dts of the |
| 832 | _next_ one */ |
| 833 | dts = timestamp; |
| 834 | pts = timestamp + (st->codec.max_b_frames + 1) * frame_delay; |
| 835 | } |
| 836 | } |
| 837 | #if 1 |
Michel Bardiaux | bc874da | 2004-03-03 15:41:21 | [diff] [blame] | 838 | av_log(&st->codec, AV_LOG_DEBUG, "pts=%0.3f dts=%0.3f pict_type=%c\n", |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 839 | pts / 90000.0, dts / 90000.0, |
| 840 | av_get_pict_type_char(st->codec.coded_frame->pict_type)); |
| 841 | #endif |
| 842 | } else { |
| 843 | pts = timestamp; |
| 844 | dts = timestamp; |
| 845 | } |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 846 | |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 847 | *ppts = pts & ((1LL << 33) - 1); |
| 848 | *pdts = dts & ((1LL << 33) - 1); |
| 849 | } |
| 850 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 851 | static int64_t update_scr(AVFormatContext *ctx,int stream_index,int64_t pts) |
| 852 | { |
| 853 | MpegMuxContext *s = ctx->priv_data; |
| 854 | int64_t scr; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 855 | StreamInfo *stream; |
| 856 | int i; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 857 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 858 | if (s->is_vcd) { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 859 | /* Since the data delivery rate is constant, SCR is computed |
| 860 | using the formula C + i * 1200 where C is the start constant |
| 861 | and i is the pack index. |
| 862 | It is recommended that SCR 0 is at the beginning of the VCD front |
| 863 | margin (a sequence of empty Form 2 sectors on the CD). |
| 864 | It is recommended that the front margin is 30 sectors long, so |
| 865 | we use C = 30*1200 = 36000 |
| 866 | (Note that even if the front margin is not 30 sectors the file |
| 867 | will still be correct according to the standard. It just won't have |
| 868 | the "recommended" value).*/ |
| 869 | scr = 36000 + s->packet_number * 1200; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 870 | |
| 871 | |
| 872 | #if 0 |
| 873 | for(i=0;i<ctx->nb_streams;i++) { |
| 874 | stream = ctx->streams[i]->priv_data; |
| 875 | |
| 876 | if(scr > stream->start_pts && stream->start_pts!=AV_NOPTS_VALUE) { |
| 877 | av_log(ctx, AV_LOG_DEBUG, "mpeg vcd: SCR above PTS (scr=%0.3f, stream index=%d, stream_pts=%0.3f).\n", scr/90000.0, i, stream->start_pts / 90000.0); |
| 878 | } |
| 879 | } |
| 880 | #endif |
| 881 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 882 | else { |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 883 | |
| 884 | |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 885 | /* XXX I believe this calculation of SCR is wrong. SCR |
| 886 | specifies at which time the data should enter the decoder. |
| 887 | Two packs cannot enter the decoder at the same time. */ |
| 888 | |
| 889 | /* XXX: system clock should be computed precisely, especially for |
| 890 | CBR case. The current mode gives at least something coherent */ |
| 891 | if (stream_index == s->scr_stream_index |
| 892 | && pts != AV_NOPTS_VALUE) |
| 893 | scr = pts; |
| 894 | else |
| 895 | scr = s->last_scr; |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 896 | |
| 897 | /* "Sanity hack": make sure that the SCR does not overtake the pts of |
| 898 | buffered data that is still waiting to be written.*/ |
| 899 | for(i=0;i<ctx->nb_streams;i++) { |
| 900 | stream = ctx->streams[i]->priv_data; |
| 901 | |
| 902 | if(scr > stream->start_pts && stream->start_pts!=AV_NOPTS_VALUE) { |
| 903 | /* av_log(ctx, AV_LOG_DEBUG, "mpeg: restricting scr to stream pts (scr=%0.3f, stream index=%d, stream_pts=%0.3f).\n", scr/90000.0, i, stream->start_pts / 90000.0); */ |
| 904 | scr = stream->start_pts; |
| 905 | } |
| 906 | } |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | s->last_scr=scr; |
| 910 | |
| 911 | return scr; |
| 912 | } |
| 913 | |
| 914 | |
Juanjo | 10bb702 | 2002-04-07 21:44:29 | [diff] [blame] | 915 | static int mpeg_mux_write_packet(AVFormatContext *ctx, int stream_index, |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 916 | const uint8_t *buf, int size, |
| 917 | int64_t timestamp) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 918 | { |
| 919 | MpegMuxContext *s = ctx->priv_data; |
| 920 | AVStream *st = ctx->streams[stream_index]; |
| 921 | StreamInfo *stream = st->priv_data; |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 922 | int64_t pts, dts, new_start_pts, new_start_dts; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 923 | int len, avail_size; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 924 | |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 925 | compute_pts_dts(st, &pts, &dts, timestamp); |
| 926 | |
Hauke Duden | 2249448 | 2004-04-26 22:16:06 | [diff] [blame] | 927 | if(s->is_svcd) { |
| 928 | /* offset pts and dts slightly into the future to be able |
| 929 | to do the compatibility fix below.*/ |
| 930 | pts = (pts + 2) & ((1LL << 33) - 1); |
| 931 | dts = (dts + 2) & ((1LL << 33) - 1); |
| 932 | |
| 933 | if (stream->packet_number == 0 && dts == pts) |
| 934 | /* For the very first packet we want to force the DTS to be included. |
| 935 | This increases compatibility with lots of DVD players. |
| 936 | Since the MPEG-2 standard mandates that DTS is only written when |
| 937 | it is different from PTS we have to move it slightly into the past.*/ |
| 938 | dts = (dts - 2) & ((1LL << 33) - 1); |
| 939 | } |
| 940 | if(s->is_vcd) { |
| 941 | /* We have to offset the PTS, so that it is consistent with the SCR. |
| 942 | SCR starts at 36000, but the first two packs contain only padding |
| 943 | and the first pack from the other stream, respectively, may also have |
| 944 | been written before. |
| 945 | So the real data starts at SCR 36000+3*1200. */ |
| 946 | pts = (pts + 36000 + 3600) & ((1LL << 33) - 1); |
| 947 | dts = (dts + 36000 + 3600) & ((1LL << 33) - 1); |
| 948 | } |
Juanjo | 10bb702 | 2002-04-07 21:44:29 | [diff] [blame] | 949 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 950 | #if 0 |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 951 | update_scr(ctx,stream_index,pts); |
| 952 | |
Fabrice Bellard | e45f194 | 2003-12-18 13:03:37 | [diff] [blame] | 953 | printf("%d: pts=%0.3f dts=%0.3f scr=%0.3f\n", |
| 954 | stream_index, |
| 955 | pts / 90000.0, |
| 956 | dts / 90000.0, |
| 957 | s->last_scr / 90000.0); |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 958 | #endif |
| 959 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 960 | /* we assume here that pts != AV_NOPTS_VALUE */ |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 961 | new_start_pts = stream->start_pts; |
| 962 | new_start_dts = stream->start_dts; |
| 963 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 964 | if (stream->start_pts == AV_NOPTS_VALUE) { |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 965 | new_start_pts = pts; |
| 966 | new_start_dts = dts; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 967 | } |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 968 | avail_size = get_packet_payload_size(ctx, stream_index, |
| 969 | new_start_pts, |
| 970 | new_start_dts); |
| 971 | if (stream->buffer_ptr >= avail_size) { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 972 | |
| 973 | update_scr(ctx,stream_index,stream->start_pts); |
| 974 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 975 | /* unlikely case: outputing the pts or dts increase the packet |
| 976 | size so that we cannot write the start of the next |
| 977 | packet. In this case, we must flush the current packet with |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 978 | padding. |
| 979 | Note: this always happens for the first audio and video packet |
| 980 | in a VCD file, since they do not carry any data.*/ |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 981 | flush_packet(ctx, stream_index, |
| 982 | stream->start_pts, stream->start_dts, s->last_scr); |
| 983 | stream->buffer_ptr = 0; |
| 984 | } |
| 985 | stream->start_pts = new_start_pts; |
| 986 | stream->start_dts = new_start_dts; |
| 987 | stream->nb_frames++; |
| 988 | if (stream->frame_start_offset == 0) |
| 989 | stream->frame_start_offset = stream->buffer_ptr; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 990 | while (size > 0) { |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 991 | avail_size = get_packet_payload_size(ctx, stream_index, |
| 992 | stream->start_pts, |
| 993 | stream->start_dts); |
| 994 | len = avail_size - stream->buffer_ptr; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 995 | if (len > size) |
| 996 | len = size; |
| 997 | memcpy(stream->buffer + stream->buffer_ptr, buf, len); |
| 998 | stream->buffer_ptr += len; |
| 999 | buf += len; |
| 1000 | size -= len; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1001 | if (stream->buffer_ptr >= avail_size) { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 1002 | |
| 1003 | update_scr(ctx,stream_index,stream->start_pts); |
| 1004 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1005 | /* if packet full, we send it now */ |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 1006 | flush_packet(ctx, stream_index, |
| 1007 | stream->start_pts, stream->start_dts, s->last_scr); |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1008 | stream->buffer_ptr = 0; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 1009 | |
| 1010 | if (s->is_vcd) { |
| 1011 | /* Write one or more padding sectors, if necessary, to reach |
| 1012 | the constant overall bitrate.*/ |
| 1013 | int vcd_pad_bytes; |
| 1014 | |
| 1015 | while((vcd_pad_bytes = get_vcd_padding_size(ctx,stream->start_pts) ) >= s->packet_size) |
| 1016 | put_vcd_padding_sector(ctx); |
| 1017 | } |
| 1018 | |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 1019 | /* Make sure only the FIRST pes packet for this frame has |
| 1020 | a timestamp */ |
| 1021 | stream->start_pts = AV_NOPTS_VALUE; |
| 1022 | stream->start_dts = AV_NOPTS_VALUE; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1023 | } |
| 1024 | } |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1025 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1026 | return 0; |
| 1027 | } |
| 1028 | |
| 1029 | static int mpeg_mux_end(AVFormatContext *ctx) |
| 1030 | { |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 1031 | MpegMuxContext *s = ctx->priv_data; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1032 | StreamInfo *stream; |
| 1033 | int i; |
| 1034 | |
| 1035 | /* flush each packet */ |
| 1036 | for(i=0;i<ctx->nb_streams;i++) { |
| 1037 | stream = ctx->streams[i]->priv_data; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1038 | if (stream->buffer_ptr > 0) { |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 1039 | update_scr(ctx,i,stream->start_pts); |
| 1040 | |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1041 | /* NOTE: we can always write the remaining data as it was |
| 1042 | tested before in mpeg_mux_write_packet() */ |
| 1043 | flush_packet(ctx, i, stream->start_pts, stream->start_dts, |
| 1044 | s->last_scr); |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 1045 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1046 | } |
| 1047 | |
Fabrice Bellard | fa0f62c | 2003-09-10 22:44:30 | [diff] [blame] | 1048 | /* End header according to MPEG1 systems standard. We do not write |
| 1049 | it as it is usually not needed by decoders and because it |
| 1050 | complicates MPEG stream concatenation. */ |
Juanjo | 92b3e12 | 2002-05-12 21:38:54 | [diff] [blame] | 1051 | //put_be32(&ctx->pb, ISO_11172_END_CODE); |
| 1052 | //put_flush_packet(&ctx->pb); |
Michael Niedermayer | 9d90c37 | 2003-09-09 19:32:52 | [diff] [blame] | 1053 | |
| 1054 | for(i=0;i<ctx->nb_streams;i++) |
| 1055 | av_freep(&ctx->streams[i]->priv_data); |
| 1056 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1057 | return 0; |
| 1058 | } |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 1059 | #endif //CONFIG_ENCODERS |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1060 | |
| 1061 | /*********************************************/ |
| 1062 | /* demux code */ |
| 1063 | |
| 1064 | #define MAX_SYNC_SIZE 100000 |
| 1065 | |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1066 | static int mpegps_probe(AVProbeData *p) |
| 1067 | { |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 1068 | int code, c, i; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1069 | |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 1070 | code = 0xff; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1071 | /* we search the first start code. If it is a packet start code, |
| 1072 | then we decide it is mpeg ps. We do not send highest value to |
| 1073 | give a chance to mpegts */ |
Fabrice Bellard | fa777321 | 2003-02-02 20:04:03 | [diff] [blame] | 1074 | /* NOTE: the search range was restricted to avoid too many false |
| 1075 | detections */ |
| 1076 | |
| 1077 | if (p->buf_size < 6) |
| 1078 | return 0; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 1079 | |
| 1080 | for (i = 0; i < 20; i++) { |
| 1081 | c = p->buf[i]; |
| 1082 | code = (code << 8) | c; |
| 1083 | if ((code & 0xffffff00) == 0x100) { |
| 1084 | if (code == PACK_START_CODE || |
| 1085 | code == SYSTEM_HEADER_START_CODE || |
| 1086 | (code >= 0x1e0 && code <= 0x1ef) || |
| 1087 | (code >= 0x1c0 && code <= 0x1df) || |
| 1088 | code == PRIVATE_STREAM_2 || |
| 1089 | code == PROGRAM_STREAM_MAP || |
| 1090 | code == PRIVATE_STREAM_1 || |
| 1091 | code == PADDING_STREAM) |
Michael Niedermayer | 149f7c0 | 2003-09-01 18:30:02 | [diff] [blame] | 1092 | return AVPROBE_SCORE_MAX - 2; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 1093 | else |
| 1094 | return 0; |
| 1095 | } |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1096 | } |
| 1097 | return 0; |
| 1098 | } |
| 1099 | |
| 1100 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1101 | typedef struct MpegDemuxContext { |
| 1102 | int header_state; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1103 | } MpegDemuxContext; |
| 1104 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1105 | static int mpegps_read_header(AVFormatContext *s, |
| 1106 | AVFormatParameters *ap) |
| 1107 | { |
| 1108 | MpegDemuxContext *m = s->priv_data; |
| 1109 | m->header_state = 0xff; |
| 1110 | s->ctx_flags |= AVFMTCTX_NOHEADER; |
| 1111 | |
| 1112 | /* no need to do more */ |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
| 1116 | static int64_t get_pts(ByteIOContext *pb, int c) |
| 1117 | { |
| 1118 | int64_t pts; |
| 1119 | int val; |
| 1120 | |
| 1121 | if (c < 0) |
| 1122 | c = get_byte(pb); |
| 1123 | pts = (int64_t)((c >> 1) & 0x07) << 30; |
| 1124 | val = get_be16(pb); |
| 1125 | pts |= (int64_t)(val >> 1) << 15; |
| 1126 | val = get_be16(pb); |
| 1127 | pts |= (int64_t)(val >> 1); |
| 1128 | return pts; |
| 1129 | } |
| 1130 | |
| 1131 | static int find_next_start_code(ByteIOContext *pb, int *size_ptr, |
| 1132 | uint32_t *header_state) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1133 | { |
| 1134 | unsigned int state, v; |
| 1135 | int val, n; |
| 1136 | |
| 1137 | state = *header_state; |
| 1138 | n = *size_ptr; |
| 1139 | while (n > 0) { |
| 1140 | if (url_feof(pb)) |
| 1141 | break; |
| 1142 | v = get_byte(pb); |
| 1143 | n--; |
| 1144 | if (state == 0x000001) { |
| 1145 | state = ((state << 8) | v) & 0xffffff; |
| 1146 | val = state; |
| 1147 | goto found; |
| 1148 | } |
| 1149 | state = ((state << 8) | v) & 0xffffff; |
| 1150 | } |
| 1151 | val = -1; |
| 1152 | found: |
| 1153 | *header_state = state; |
| 1154 | *size_ptr = n; |
| 1155 | return val; |
| 1156 | } |
| 1157 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1158 | /* XXX: optimize */ |
| 1159 | static int find_prev_start_code(ByteIOContext *pb, int *size_ptr) |
Juanjo | 001e3f5 | 2002-03-17 17:44:45 | [diff] [blame] | 1160 | { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1161 | int64_t pos, pos_start; |
| 1162 | int max_size, start_code; |
Fabrice Bellard | da24c5e | 2003-10-29 14:20:56 | [diff] [blame] | 1163 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1164 | max_size = *size_ptr; |
| 1165 | pos_start = url_ftell(pb); |
| 1166 | |
| 1167 | /* in order to go faster, we fill the buffer */ |
| 1168 | pos = pos_start - 16386; |
| 1169 | if (pos < 0) |
| 1170 | pos = 0; |
| 1171 | url_fseek(pb, pos, SEEK_SET); |
| 1172 | get_byte(pb); |
| 1173 | |
| 1174 | pos = pos_start; |
| 1175 | for(;;) { |
| 1176 | pos--; |
| 1177 | if (pos < 0 || (pos_start - pos) >= max_size) { |
| 1178 | start_code = -1; |
| 1179 | goto the_end; |
| 1180 | } |
| 1181 | url_fseek(pb, pos, SEEK_SET); |
| 1182 | start_code = get_be32(pb); |
| 1183 | if ((start_code & 0xffffff00) == 0x100) |
| 1184 | break; |
| 1185 | } |
| 1186 | the_end: |
| 1187 | *size_ptr = pos_start - pos; |
| 1188 | return start_code; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1189 | } |
| 1190 | |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1191 | /* read the next PES header. Return its position in ppos |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1192 | (if not NULL), and its start code, pts and dts. |
| 1193 | */ |
| 1194 | static int mpegps_read_pes_header(AVFormatContext *s, |
| 1195 | int64_t *ppos, int *pstart_code, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1196 | int64_t *ppts, int64_t *pdts) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1197 | { |
| 1198 | MpegDemuxContext *m = s->priv_data; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1199 | int len, size, startcode, c, flags, header_len; |
| 1200 | int64_t pts, dts, last_pos; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1201 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1202 | last_pos = -1; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1203 | redo: |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1204 | /* next start code (should be immediately after) */ |
| 1205 | m->header_state = 0xff; |
| 1206 | size = MAX_SYNC_SIZE; |
| 1207 | startcode = find_next_start_code(&s->pb, &size, &m->header_state); |
Juanjo | 001e3f5 | 2002-03-17 17:44:45 | [diff] [blame] | 1208 | //printf("startcode=%x pos=0x%Lx\n", startcode, url_ftell(&s->pb)); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1209 | if (startcode < 0) |
| 1210 | return -EIO; |
| 1211 | if (startcode == PACK_START_CODE) |
| 1212 | goto redo; |
| 1213 | if (startcode == SYSTEM_HEADER_START_CODE) |
| 1214 | goto redo; |
| 1215 | if (startcode == PADDING_STREAM || |
| 1216 | startcode == PRIVATE_STREAM_2) { |
| 1217 | /* skip them */ |
| 1218 | len = get_be16(&s->pb); |
| 1219 | url_fskip(&s->pb, len); |
| 1220 | goto redo; |
| 1221 | } |
| 1222 | /* find matching stream */ |
| 1223 | if (!((startcode >= 0x1c0 && startcode <= 0x1df) || |
| 1224 | (startcode >= 0x1e0 && startcode <= 0x1ef) || |
| 1225 | (startcode == 0x1bd))) |
| 1226 | goto redo; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1227 | if (ppos) { |
| 1228 | *ppos = url_ftell(&s->pb) - 4; |
| 1229 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1230 | len = get_be16(&s->pb); |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 1231 | pts = AV_NOPTS_VALUE; |
| 1232 | dts = AV_NOPTS_VALUE; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1233 | /* stuffing */ |
| 1234 | for(;;) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1235 | if (len < 1) |
| 1236 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1237 | c = get_byte(&s->pb); |
| 1238 | len--; |
| 1239 | /* XXX: for mpeg1, should test only bit 7 */ |
| 1240 | if (c != 0xff) |
| 1241 | break; |
| 1242 | } |
| 1243 | if ((c & 0xc0) == 0x40) { |
| 1244 | /* buffer scale & size */ |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1245 | if (len < 2) |
| 1246 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1247 | get_byte(&s->pb); |
| 1248 | c = get_byte(&s->pb); |
| 1249 | len -= 2; |
| 1250 | } |
| 1251 | if ((c & 0xf0) == 0x20) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1252 | if (len < 4) |
| 1253 | goto redo; |
| 1254 | dts = pts = get_pts(&s->pb, c); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1255 | len -= 4; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1256 | } else if ((c & 0xf0) == 0x30) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1257 | if (len < 9) |
| 1258 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1259 | pts = get_pts(&s->pb, c); |
| 1260 | dts = get_pts(&s->pb, -1); |
| 1261 | len -= 9; |
| 1262 | } else if ((c & 0xc0) == 0x80) { |
| 1263 | /* mpeg 2 PES */ |
| 1264 | if ((c & 0x30) != 0) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1265 | /* Encrypted multiplex not handled */ |
| 1266 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1267 | } |
| 1268 | flags = get_byte(&s->pb); |
| 1269 | header_len = get_byte(&s->pb); |
| 1270 | len -= 2; |
| 1271 | if (header_len > len) |
| 1272 | goto redo; |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 1273 | if ((flags & 0xc0) == 0x80) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1274 | dts = pts = get_pts(&s->pb, -1); |
| 1275 | if (header_len < 5) |
| 1276 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1277 | header_len -= 5; |
| 1278 | len -= 5; |
| 1279 | } if ((flags & 0xc0) == 0xc0) { |
| 1280 | pts = get_pts(&s->pb, -1); |
| 1281 | dts = get_pts(&s->pb, -1); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1282 | if (header_len < 10) |
| 1283 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1284 | header_len -= 10; |
| 1285 | len -= 10; |
| 1286 | } |
| 1287 | len -= header_len; |
| 1288 | while (header_len > 0) { |
| 1289 | get_byte(&s->pb); |
| 1290 | header_len--; |
| 1291 | } |
| 1292 | } |
Dmitry Borisov | df70de1 | 2004-04-23 21:02:01 | [diff] [blame] | 1293 | else if( c!= 0xf ) |
| 1294 | goto redo; |
| 1295 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1296 | if (startcode == 0x1bd) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1297 | if (len < 1) |
| 1298 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1299 | startcode = get_byte(&s->pb); |
| 1300 | len--; |
| 1301 | if (startcode >= 0x80 && startcode <= 0xbf) { |
| 1302 | /* audio: skip header */ |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1303 | if (len < 3) |
| 1304 | goto redo; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1305 | get_byte(&s->pb); |
| 1306 | get_byte(&s->pb); |
| 1307 | get_byte(&s->pb); |
| 1308 | len -= 3; |
| 1309 | } |
| 1310 | } |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 1311 | if(dts != AV_NOPTS_VALUE && ppos){ |
| 1312 | int i; |
| 1313 | for(i=0; i<s->nb_streams; i++){ |
| 1314 | if(startcode == s->streams[i]->id) { |
Michael Niedermayer | cdd5034 | 2004-05-23 16:26:12 | [diff] [blame^] | 1315 | av_add_index_entry(s->streams[i], *ppos, dts, 0, 0 /* FIXME keyframe? */); |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 1316 | } |
| 1317 | } |
| 1318 | } |
| 1319 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1320 | *pstart_code = startcode; |
| 1321 | *ppts = pts; |
| 1322 | *pdts = dts; |
| 1323 | return len; |
| 1324 | } |
| 1325 | |
| 1326 | static int mpegps_read_packet(AVFormatContext *s, |
| 1327 | AVPacket *pkt) |
| 1328 | { |
| 1329 | AVStream *st; |
| 1330 | int len, startcode, i, type, codec_id; |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 1331 | int64_t pts, dts, dummy_pos; //dummy_pos is needed for the index building to work |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1332 | |
| 1333 | redo: |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1334 | len = mpegps_read_pes_header(s, &dummy_pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1335 | if (len < 0) |
| 1336 | return len; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 1337 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1338 | /* now find stream */ |
| 1339 | for(i=0;i<s->nb_streams;i++) { |
| 1340 | st = s->streams[i]; |
| 1341 | if (st->id == startcode) |
| 1342 | goto found; |
| 1343 | } |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1344 | if (startcode >= 0x1e0 && startcode <= 0x1ef) { |
| 1345 | type = CODEC_TYPE_VIDEO; |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1346 | codec_id = CODEC_ID_MPEG2VIDEO; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1347 | } else if (startcode >= 0x1c0 && startcode <= 0x1df) { |
| 1348 | type = CODEC_TYPE_AUDIO; |
| 1349 | codec_id = CODEC_ID_MP2; |
| 1350 | } else if (startcode >= 0x80 && startcode <= 0x9f) { |
| 1351 | type = CODEC_TYPE_AUDIO; |
| 1352 | codec_id = CODEC_ID_AC3; |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 1353 | } else if (startcode >= 0xa0 && startcode <= 0xbf) { |
| 1354 | type = CODEC_TYPE_AUDIO; |
| 1355 | codec_id = CODEC_ID_PCM_S16BE; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1356 | } else { |
| 1357 | skip: |
| 1358 | /* skip packet */ |
| 1359 | url_fskip(&s->pb, len); |
| 1360 | goto redo; |
| 1361 | } |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 1362 | /* no stream found: add a new stream */ |
| 1363 | st = av_new_stream(s, startcode); |
| 1364 | if (!st) |
| 1365 | goto skip; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1366 | st->codec.codec_type = type; |
| 1367 | st->codec.codec_id = codec_id; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1368 | if (codec_id != CODEC_ID_PCM_S16BE) |
| 1369 | st->need_parsing = 1; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1370 | found: |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 1371 | if (startcode >= 0xa0 && startcode <= 0xbf) { |
| 1372 | int b1, freq; |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 1373 | |
| 1374 | /* for LPCM, we just skip the header and consider it is raw |
| 1375 | audio data */ |
| 1376 | if (len <= 3) |
| 1377 | goto skip; |
| 1378 | get_byte(&s->pb); /* emphasis (1), muse(1), reserved(1), frame number(5) */ |
| 1379 | b1 = get_byte(&s->pb); /* quant (2), freq(2), reserved(1), channels(3) */ |
| 1380 | get_byte(&s->pb); /* dynamic range control (0x80 = off) */ |
| 1381 | len -= 3; |
| 1382 | freq = (b1 >> 4) & 3; |
| 1383 | st->codec.sample_rate = lpcm_freq_tab[freq]; |
| 1384 | st->codec.channels = 1 + (b1 & 7); |
| 1385 | st->codec.bit_rate = st->codec.channels * st->codec.sample_rate * 2; |
| 1386 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1387 | av_new_packet(pkt, len); |
| 1388 | get_buffer(&s->pb, pkt->data, pkt->size); |
| 1389 | pkt->pts = pts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1390 | pkt->dts = dts; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1391 | pkt->stream_index = st->index; |
Michel Bardiaux | 27a206e | 2003-12-09 18:06:18 | [diff] [blame] | 1392 | #if 0 |
| 1393 | printf("%d: pts=%0.3f dts=%0.3f\n", |
| 1394 | pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0); |
| 1395 | #endif |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1396 | return 0; |
| 1397 | } |
| 1398 | |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1399 | static int mpegps_read_close(AVFormatContext *s) |
Juanjo | 001e3f5 | 2002-03-17 17:44:45 | [diff] [blame] | 1400 | { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1401 | return 0; |
| 1402 | } |
| 1403 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1404 | static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1405 | int64_t *ppos, int64_t pos_limit) |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1406 | { |
| 1407 | int len, startcode; |
| 1408 | int64_t pos, pts, dts; |
| 1409 | |
| 1410 | pos = *ppos; |
| 1411 | #ifdef DEBUG_SEEK |
| 1412 | printf("read_dts: pos=0x%llx next=%d -> ", pos, find_next); |
| 1413 | #endif |
| 1414 | url_fseek(&s->pb, pos, SEEK_SET); |
| 1415 | for(;;) { |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1416 | len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1417 | if (len < 0) { |
| 1418 | #ifdef DEBUG_SEEK |
| 1419 | printf("none (ret=%d)\n", len); |
| 1420 | #endif |
| 1421 | return AV_NOPTS_VALUE; |
| 1422 | } |
| 1423 | if (startcode == s->streams[stream_index]->id && |
| 1424 | dts != AV_NOPTS_VALUE) { |
| 1425 | break; |
| 1426 | } |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1427 | url_fskip(&s->pb, len); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1428 | } |
| 1429 | #ifdef DEBUG_SEEK |
| 1430 | printf("pos=0x%llx dts=0x%llx %0.3f\n", pos, dts, dts / 90000.0); |
| 1431 | #endif |
| 1432 | *ppos = pos; |
Michael Niedermayer | cdd5034 | 2004-05-23 16:26:12 | [diff] [blame^] | 1433 | return dts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 1434 | } |
| 1435 | |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 1436 | #ifdef CONFIG_ENCODERS |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1437 | static AVOutputFormat mpeg1system_mux = { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1438 | "mpeg", |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1439 | "MPEG1 System format", |
Ryutaroh Matsumoto | c6c11cb | 2002-12-20 23:10:58 | [diff] [blame] | 1440 | "video/mpeg", |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1441 | "mpg,mpeg", |
| 1442 | sizeof(MpegMuxContext), |
| 1443 | CODEC_ID_MP2, |
| 1444 | CODEC_ID_MPEG1VIDEO, |
| 1445 | mpeg_mux_init, |
| 1446 | mpeg_mux_write_packet, |
| 1447 | mpeg_mux_end, |
| 1448 | }; |
| 1449 | |
| 1450 | static AVOutputFormat mpeg1vcd_mux = { |
| 1451 | "vcd", |
| 1452 | "MPEG1 System format (VCD)", |
Ryutaroh Matsumoto | c6c11cb | 2002-12-20 23:10:58 | [diff] [blame] | 1453 | "video/mpeg", |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1454 | NULL, |
| 1455 | sizeof(MpegMuxContext), |
| 1456 | CODEC_ID_MP2, |
| 1457 | CODEC_ID_MPEG1VIDEO, |
| 1458 | mpeg_mux_init, |
| 1459 | mpeg_mux_write_packet, |
| 1460 | mpeg_mux_end, |
| 1461 | }; |
| 1462 | |
| 1463 | static AVOutputFormat mpeg2vob_mux = { |
| 1464 | "vob", |
| 1465 | "MPEG2 PS format (VOB)", |
Ryutaroh Matsumoto | c6c11cb | 2002-12-20 23:10:58 | [diff] [blame] | 1466 | "video/mpeg", |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1467 | "vob", |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1468 | sizeof(MpegMuxContext), |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1469 | CODEC_ID_MP2, |
Fabrice Bellard | 0dbb48d | 2003-12-16 11:25:30 | [diff] [blame] | 1470 | CODEC_ID_MPEG2VIDEO, |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1471 | mpeg_mux_init, |
| 1472 | mpeg_mux_write_packet, |
| 1473 | mpeg_mux_end, |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1474 | }; |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 1475 | |
| 1476 | /* Same as mpeg2vob_mux except that the pack size is 2324 */ |
| 1477 | static AVOutputFormat mpeg2svcd_mux = { |
| 1478 | "svcd", |
| 1479 | "MPEG2 PS format (VOB)", |
| 1480 | "video/mpeg", |
| 1481 | "vob", |
| 1482 | sizeof(MpegMuxContext), |
| 1483 | CODEC_ID_MP2, |
| 1484 | CODEC_ID_MPEG2VIDEO, |
| 1485 | mpeg_mux_init, |
| 1486 | mpeg_mux_write_packet, |
| 1487 | mpeg_mux_end, |
| 1488 | }; |
| 1489 | |
| 1490 | |
| 1491 | |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 1492 | #endif //CONFIG_ENCODERS |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1493 | |
Fabrice Bellard | 32f38cb | 2003-08-08 17:54:05 | [diff] [blame] | 1494 | AVInputFormat mpegps_demux = { |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1495 | "mpeg", |
| 1496 | "MPEG PS format", |
| 1497 | sizeof(MpegDemuxContext), |
| 1498 | mpegps_probe, |
| 1499 | mpegps_read_header, |
| 1500 | mpegps_read_packet, |
| 1501 | mpegps_read_close, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 1502 | NULL, //mpegps_read_seek, |
| 1503 | mpegps_read_dts, |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1504 | }; |
| 1505 | |
| 1506 | int mpegps_init(void) |
| 1507 | { |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 1508 | #ifdef CONFIG_ENCODERS |
Fabrice Bellard | fb7566d | 2002-10-15 10:22:23 | [diff] [blame] | 1509 | av_register_output_format(&mpeg1system_mux); |
| 1510 | av_register_output_format(&mpeg1vcd_mux); |
| 1511 | av_register_output_format(&mpeg2vob_mux); |
Hauke Duden | 2451592 | 2004-02-19 22:34:13 | [diff] [blame] | 1512 | av_register_output_format(&mpeg2svcd_mux); |
Mike Melanson | 764ef40 | 2003-10-14 04:15:53 | [diff] [blame] | 1513 | #endif //CONFIG_ENCODERS |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 1514 | av_register_input_format(&mpegps_demux); |
| 1515 | return 0; |
| 1516 | } |