]> git.sesse.net Git - ffmpeg/blob - libavformat/mpegenc.c
Merge commit '4d40e073dcdef335215c124d340ea156bc4bdf13'
[ffmpeg] / libavformat / mpegenc.c
1 /*
2  * MPEG1/2 muxer
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23
24 #include "libavutil/attributes.h"
25 #include "libavutil/fifo.h"
26 #include "libavutil/log.h"
27 #include "libavutil/mathematics.h"
28 #include "libavutil/opt.h"
29 #include "libavcodec/put_bits.h"
30 #include "avformat.h"
31 #include "internal.h"
32 #include "mpeg.h"
33
34 #define MAX_PAYLOAD_SIZE 4096
35
36 #undef NDEBUG
37 #include <assert.h>
38
39 typedef struct PacketDesc {
40     int64_t pts;
41     int64_t dts;
42     int size;
43     int unwritten_size;
44     int flags;
45     struct PacketDesc *next;
46 } PacketDesc;
47
48 typedef struct {
49     AVFifoBuffer *fifo;
50     uint8_t id;
51     int max_buffer_size; /* in bytes */
52     int buffer_index;
53     PacketDesc *predecode_packet;
54     PacketDesc *premux_packet;
55     PacketDesc **next_packet;
56     int packet_number;
57     uint8_t lpcm_header[3];
58     int lpcm_align;
59     int bytes_to_iframe;
60     int align_iframe;
61     int64_t vobu_start_pts;
62 } StreamInfo;
63
64 typedef struct {
65     const AVClass *class;
66     int packet_size; /* required packet size */
67     int packet_number;
68     int pack_header_freq;     /* frequency (in packets^-1) at which we send pack headers */
69     int system_header_freq;
70     int system_header_size;
71     int user_mux_rate; /* bitrate in units of bits/s */
72     int mux_rate; /* bitrate in units of 50 bytes/s */
73     /* stream info */
74     int audio_bound;
75     int video_bound;
76     int is_mpeg2;
77     int is_vcd;
78     int is_svcd;
79     int is_dvd;
80     int64_t last_scr; /* current system clock */
81
82     double vcd_padding_bitrate; //FIXME floats
83     int64_t vcd_padding_bytes_written;
84
85     int preload;
86 } MpegMuxContext;
87
88 extern AVOutputFormat ff_mpeg1vcd_muxer;
89 extern AVOutputFormat ff_mpeg2dvd_muxer;
90 extern AVOutputFormat ff_mpeg2svcd_muxer;
91 extern AVOutputFormat ff_mpeg2vob_muxer;
92
93 static int put_pack_header(AVFormatContext *ctx,
94                            uint8_t *buf, int64_t timestamp)
95 {
96     MpegMuxContext *s = ctx->priv_data;
97     PutBitContext pb;
98
99     init_put_bits(&pb, buf, 128);
100
101     put_bits32(&pb, PACK_START_CODE);
102     if (s->is_mpeg2) {
103         put_bits(&pb, 2, 0x1);
104     } else {
105         put_bits(&pb, 4, 0x2);
106     }
107     put_bits(&pb, 3,  (uint32_t)((timestamp >> 30) & 0x07));
108     put_bits(&pb, 1, 1);
109     put_bits(&pb, 15, (uint32_t)((timestamp >> 15) & 0x7fff));
110     put_bits(&pb, 1, 1);
111     put_bits(&pb, 15, (uint32_t)((timestamp      ) & 0x7fff));
112     put_bits(&pb, 1, 1);
113     if (s->is_mpeg2) {
114         /* clock extension */
115         put_bits(&pb, 9, 0);
116     }
117     put_bits(&pb, 1, 1);
118     put_bits(&pb, 22, s->mux_rate);
119     put_bits(&pb, 1, 1);
120     if (s->is_mpeg2) {
121         put_bits(&pb, 1, 1);
122         put_bits(&pb, 5, 0x1f); /* reserved */
123         put_bits(&pb, 3, 0); /* stuffing length */
124     }
125     flush_put_bits(&pb);
126     return put_bits_ptr(&pb) - pb.buf;
127 }
128
129 static int put_system_header(AVFormatContext *ctx, uint8_t *buf,int only_for_stream_id)
130 {
131     MpegMuxContext *s = ctx->priv_data;
132     int size, i, private_stream_coded, id;
133     PutBitContext pb;
134
135     init_put_bits(&pb, buf, 128);
136
137     put_bits32(&pb, SYSTEM_HEADER_START_CODE);
138     put_bits(&pb, 16, 0);
139     put_bits(&pb, 1, 1);
140
141     put_bits(&pb, 22, s->mux_rate); /* maximum bit rate of the multiplexed stream */
142     put_bits(&pb, 1, 1); /* marker */
143     if (s->is_vcd && only_for_stream_id==VIDEO_ID) {
144         /* This header applies only to the video stream (see VCD standard p. IV-7)*/
145         put_bits(&pb, 6, 0);
146     } else
147         put_bits(&pb, 6, s->audio_bound);
148
149     if (s->is_vcd) {
150         /* see VCD standard, p. IV-7*/
151         put_bits(&pb, 1, 0);
152         put_bits(&pb, 1, 1);
153     } else {
154         put_bits(&pb, 1, 0); /* variable bitrate*/
155         put_bits(&pb, 1, 0); /* non constrainted bit stream */
156     }
157
158     if (s->is_vcd || s->is_dvd) {
159         /* see VCD standard p IV-7 */
160         put_bits(&pb, 1, 1); /* audio locked */
161         put_bits(&pb, 1, 1); /* video locked */
162     } else {
163         put_bits(&pb, 1, 0); /* audio locked */
164         put_bits(&pb, 1, 0); /* video locked */
165     }
166
167     put_bits(&pb, 1, 1); /* marker */
168
169     if (s->is_vcd && (only_for_stream_id & 0xe0) == AUDIO_ID) {
170         /* This header applies only to the audio stream (see VCD standard p. IV-7)*/
171         put_bits(&pb, 5, 0);
172     } else
173         put_bits(&pb, 5, s->video_bound);
174
175     if (s->is_dvd) {
176         put_bits(&pb, 1, 0);    /* packet_rate_restriction_flag */
177         put_bits(&pb, 7, 0x7f); /* reserved byte */
178     } else
179         put_bits(&pb, 8, 0xff); /* reserved byte */
180
181     /* DVD-Video Stream_bound entries
182     id (0xB9) video, maximum P-STD for stream 0xE0. (P-STD_buffer_bound_scale = 1)
183     id (0xB8) audio, maximum P-STD for any MPEG audio (0xC0 to 0xC7) streams. If there are none set to 4096 (32x128). (P-STD_buffer_bound_scale = 0)
184     id (0xBD) private stream 1 (audio other than MPEG and subpictures). (P-STD_buffer_bound_scale = 1)
185     id (0xBF) private stream 2, NAV packs, set to 2x1024. */
186     if (s->is_dvd) {
187
188         int P_STD_max_video = 0;
189         int P_STD_max_mpeg_audio = 0;
190         int P_STD_max_mpeg_PS1 = 0;
191
192         for(i=0;i<ctx->nb_streams;i++) {
193             StreamInfo *stream = ctx->streams[i]->priv_data;
194
195             id = stream->id;
196             if (id == 0xbd && stream->max_buffer_size > P_STD_max_mpeg_PS1) {
197                 P_STD_max_mpeg_PS1 = stream->max_buffer_size;
198             } else if (id >= 0xc0 && id <= 0xc7 && stream->max_buffer_size > P_STD_max_mpeg_audio) {
199                 P_STD_max_mpeg_audio = stream->max_buffer_size;
200             } else if (id == 0xe0 && stream->max_buffer_size > P_STD_max_video) {
201                 P_STD_max_video = stream->max_buffer_size;
202             }
203         }
204
205         /* video */
206         put_bits(&pb, 8, 0xb9); /* stream ID */
207         put_bits(&pb, 2, 3);
208         put_bits(&pb, 1, 1);
209         put_bits(&pb, 13, P_STD_max_video / 1024);
210
211         /* audio */
212         if (P_STD_max_mpeg_audio == 0)
213             P_STD_max_mpeg_audio = 4096;
214         put_bits(&pb, 8, 0xb8); /* stream ID */
215         put_bits(&pb, 2, 3);
216         put_bits(&pb, 1, 0);
217         put_bits(&pb, 13, P_STD_max_mpeg_audio / 128);
218
219         /* private stream 1 */
220         put_bits(&pb, 8, 0xbd); /* stream ID */
221         put_bits(&pb, 2, 3);
222         put_bits(&pb, 1, 0);
223         put_bits(&pb, 13, P_STD_max_mpeg_PS1 / 128);
224
225         /* private stream 2 */
226         put_bits(&pb, 8, 0xbf); /* stream ID */
227         put_bits(&pb, 2, 3);
228         put_bits(&pb, 1, 1);
229         put_bits(&pb, 13, 2);
230     }
231     else {
232         /* audio stream info */
233         private_stream_coded = 0;
234         for(i=0;i<ctx->nb_streams;i++) {
235             StreamInfo *stream = ctx->streams[i]->priv_data;
236
237
238             /* For VCDs, only include the stream info for the stream
239             that the pack which contains this system belongs to.
240             (see VCD standard p. IV-7) */
241             if ( !s->is_vcd || stream->id==only_for_stream_id
242                 || only_for_stream_id==0) {
243
244                 id = stream->id;
245                 if (id < 0xc0) {
246                     /* special case for private streams (AC-3 uses that) */
247                     if (private_stream_coded)
248                         continue;
249                     private_stream_coded = 1;
250                     id = 0xbd;
251                 }
252                 put_bits(&pb, 8, id); /* stream ID */
253                 put_bits(&pb, 2, 3);
254                 if (id < 0xe0) {
255                     /* audio */
256                     put_bits(&pb, 1, 0);
257                     put_bits(&pb, 13, stream->max_buffer_size / 128);
258                 } else {
259                     /* video */
260                     put_bits(&pb, 1, 1);
261                     put_bits(&pb, 13, stream->max_buffer_size / 1024);
262                 }
263             }
264         }
265     }
266
267     flush_put_bits(&pb);
268     size = put_bits_ptr(&pb) - pb.buf;
269     /* patch packet size */
270     AV_WB16(buf + 4, size - 6);
271
272     return size;
273 }
274
275 static int get_system_header_size(AVFormatContext *ctx)
276 {
277     int buf_index, i, private_stream_coded;
278     StreamInfo *stream;
279     MpegMuxContext *s = ctx->priv_data;
280
281     if (s->is_dvd)
282        return 18; // DVD-Video system headers are 18 bytes fixed length.
283
284     buf_index = 12;
285     private_stream_coded = 0;
286     for(i=0;i<ctx->nb_streams;i++) {
287         stream = ctx->streams[i]->priv_data;
288         if (stream->id < 0xc0) {
289             if (private_stream_coded)
290                 continue;
291             private_stream_coded = 1;
292         }
293         buf_index += 3;
294     }
295     return buf_index;
296 }
297
298 static av_cold int mpeg_mux_init(AVFormatContext *ctx)
299 {
300     MpegMuxContext *s = ctx->priv_data;
301     int bitrate, i, mpa_id, mpv_id, mps_id, ac3_id, dts_id, lpcm_id, j;
302     AVStream *st;
303     StreamInfo *stream;
304     int audio_bitrate;
305     int video_bitrate;
306
307     s->packet_number = 0;
308     s->is_vcd =    (CONFIG_MPEG1VCD_MUXER  && ctx->oformat == &ff_mpeg1vcd_muxer);
309     s->is_svcd =   (CONFIG_MPEG2SVCD_MUXER && ctx->oformat == &ff_mpeg2svcd_muxer);
310     s->is_mpeg2 = ((CONFIG_MPEG2VOB_MUXER  && ctx->oformat == &ff_mpeg2vob_muxer) ||
311                    (CONFIG_MPEG2DVD_MUXER  && ctx->oformat == &ff_mpeg2dvd_muxer) ||
312                    (CONFIG_MPEG2SVCD_MUXER && ctx->oformat == &ff_mpeg2svcd_muxer));
313     s->is_dvd =    (CONFIG_MPEG2DVD_MUXER  && ctx->oformat == &ff_mpeg2dvd_muxer);
314
315     if(ctx->packet_size) {
316         if (ctx->packet_size < 20 || ctx->packet_size > (1 << 23) + 10) {
317             av_log(ctx, AV_LOG_ERROR, "Invalid packet size %d\n",
318                    ctx->packet_size);
319             goto fail;
320         }
321         s->packet_size = ctx->packet_size;
322     } else
323         s->packet_size = 2048;
324     if (ctx->max_delay < 0) /* Not set by the caller */
325         ctx->max_delay = 0.7*AV_TIME_BASE;
326
327     s->vcd_padding_bytes_written = 0;
328     s->vcd_padding_bitrate=0;
329
330     s->audio_bound = 0;
331     s->video_bound = 0;
332     mpa_id = AUDIO_ID;
333     ac3_id = AC3_ID;
334     dts_id = DTS_ID;
335     mpv_id = VIDEO_ID;
336     mps_id = SUB_ID;
337     lpcm_id = LPCM_ID;
338     for(i=0;i<ctx->nb_streams;i++) {
339         st = ctx->streams[i];
340         stream = av_mallocz(sizeof(StreamInfo));
341         if (!stream)
342             goto fail;
343         st->priv_data = stream;
344
345         avpriv_set_pts_info(st, 64, 1, 90000);
346
347         switch(st->codec->codec_type) {
348         case AVMEDIA_TYPE_AUDIO:
349             if (!s->is_mpeg2 &&
350                 (st->codec->codec_id == AV_CODEC_ID_AC3 ||
351                  st->codec->codec_id == AV_CODEC_ID_DTS ||
352                  st->codec->codec_id == AV_CODEC_ID_PCM_S16BE))
353                  av_log(ctx, AV_LOG_WARNING,
354                         "%s in MPEG-1 system streams is not widely supported, "
355                         "consider using the vob or the dvd muxer "
356                         "to force a MPEG-2 program stream.\n",
357                         avcodec_get_name(st->codec->codec_id));
358             if        (st->codec->codec_id == AV_CODEC_ID_AC3) {
359                 stream->id = ac3_id++;
360             } else if (st->codec->codec_id == AV_CODEC_ID_DTS) {
361                 stream->id = dts_id++;
362             } else if (st->codec->codec_id == AV_CODEC_ID_PCM_S16BE) {
363                 stream->id = lpcm_id++;
364                 for(j = 0; j < 4; j++) {
365                     if (lpcm_freq_tab[j] == st->codec->sample_rate)
366                         break;
367                 }
368                 if (j == 4)
369                     goto fail;
370                 if (st->codec->channels > 8)
371                     return -1;
372                 stream->lpcm_header[0] = 0x0c;
373                 stream->lpcm_header[1] = (st->codec->channels - 1) | (j << 4);
374                 stream->lpcm_header[2] = 0x80;
375                 stream->lpcm_align = st->codec->channels * 2;
376             } else {
377                 stream->id = mpa_id++;
378             }
379
380             /* This value HAS to be used for VCD (see VCD standard, p. IV-7).
381                Right now it is also used for everything else.*/
382             stream->max_buffer_size = 4 * 1024;
383             s->audio_bound++;
384             break;
385         case AVMEDIA_TYPE_VIDEO:
386             stream->id = mpv_id++;
387             if (st->codec->rc_buffer_size)
388                 stream->max_buffer_size = 6*1024 + st->codec->rc_buffer_size/8;
389             else {
390                 av_log(ctx, AV_LOG_WARNING, "VBV buffer size not set, muxing may fail\n");
391                 stream->max_buffer_size = 230*1024; //FIXME this is probably too small as default
392             }
393             if (stream->max_buffer_size > 1024 * 8191) {
394                 av_log(ctx, AV_LOG_WARNING, "buffer size %d, too large\n", stream->max_buffer_size);
395                 stream->max_buffer_size = 1024 * 8191;
396             }
397             s->video_bound++;
398             break;
399         case AVMEDIA_TYPE_SUBTITLE:
400             stream->id = mps_id++;
401             stream->max_buffer_size = 16 * 1024;
402             break;
403         default:
404             return -1;
405         }
406         stream->fifo= av_fifo_alloc(16);
407         if (!stream->fifo)
408             goto fail;
409     }
410     bitrate = 0;
411     audio_bitrate = 0;
412     video_bitrate = 0;
413     for(i=0;i<ctx->nb_streams;i++) {
414         int codec_rate;
415         st = ctx->streams[i];
416         stream = (StreamInfo*) st->priv_data;
417
418         if(st->codec->rc_max_rate || stream->id==VIDEO_ID)
419             codec_rate= st->codec->rc_max_rate;
420         else
421             codec_rate= st->codec->bit_rate;
422
423         if(!codec_rate)
424             codec_rate= (1<<21)*8*50/ctx->nb_streams;
425
426         bitrate += codec_rate;
427
428         if ((stream->id & 0xe0) == AUDIO_ID)
429             audio_bitrate += codec_rate;
430         else if (stream->id==VIDEO_ID)
431             video_bitrate += codec_rate;
432     }
433
434     if (s->user_mux_rate) {
435         s->mux_rate = (s->user_mux_rate + (8 * 50) - 1) / (8 * 50);
436     } else {
437         /* we increase slightly the bitrate to take into account the
438            headers. XXX: compute it exactly */
439         bitrate += bitrate / 20;
440         bitrate += 10000;
441         s->mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
442         if (s->mux_rate >= (1<<22)) {
443             av_log(ctx, AV_LOG_WARNING, "mux rate %d is too large\n", s->mux_rate);
444             s->mux_rate = (1<<22) - 1;
445         }
446     }
447
448     if (s->is_vcd) {
449         double overhead_rate;
450
451         /* The VCD standard mandates that the mux_rate field is 3528
452            (see standard p. IV-6).
453            The value is actually "wrong", i.e. if you calculate
454            it using the normal formula and the 75 sectors per second transfer
455            rate you get a different value because the real pack size is 2324,
456            not 2352. But the standard explicitly specifies that the mux_rate
457            field in the header must have this value.*/
458 //        s->mux_rate=2352 * 75 / 50;    /* = 3528*/
459
460         /* The VCD standard states that the muxed stream must be
461            exactly 75 packs / second (the data rate of a single speed cdrom).
462            Since the video bitrate (probably 1150000 bits/sec) will be below
463            the theoretical maximum we have to add some padding packets
464            to make up for the lower data rate.
465            (cf. VCD standard p. IV-6 )*/
466
467         /* Add the header overhead to the data rate.
468            2279 data bytes per audio pack, 2294 data bytes per video pack*/
469         overhead_rate  = ((audio_bitrate / 8.0) / 2279) * (2324 - 2279);
470         overhead_rate += ((video_bitrate / 8.0) / 2294) * (2324 - 2294);
471         overhead_rate *= 8;
472
473         /* Add padding so that the full bitrate is 2324*75 bytes/sec */
474         s->vcd_padding_bitrate = 2324 * 75 * 8 - (bitrate + overhead_rate);
475     }
476
477     if (s->is_vcd || s->is_mpeg2)
478         /* every packet */
479         s->pack_header_freq = 1;
480     else
481         /* every 2 seconds */
482         s->pack_header_freq = 2 * bitrate / s->packet_size / 8;
483
484     /* the above seems to make pack_header_freq zero sometimes */
485     if (s->pack_header_freq == 0)
486        s->pack_header_freq = 1;
487
488     if (s->is_mpeg2)
489         /* every 200 packets. Need to look at the spec.  */
490         s->system_header_freq = s->pack_header_freq * 40;
491     else if (s->is_vcd)
492         /* the standard mandates that there are only two system headers
493            in the whole file: one in the first packet of each stream.
494            (see standard p. IV-7 and IV-8) */
495         s->system_header_freq = 0x7fffffff;
496     else
497         s->system_header_freq = s->pack_header_freq * 5;
498
499     for(i=0;i<ctx->nb_streams;i++) {
500         stream = ctx->streams[i]->priv_data;
501         stream->packet_number = 0;
502     }
503     s->system_header_size = get_system_header_size(ctx);
504     s->last_scr = AV_NOPTS_VALUE;
505     return 0;
506  fail:
507     for(i=0;i<ctx->nb_streams;i++) {
508         av_free(ctx->streams[i]->priv_data);
509     }
510     return AVERROR(ENOMEM);
511 }
512
513 static inline void put_timestamp(AVIOContext *pb, int id, int64_t timestamp)
514 {
515     avio_w8(pb,
516              (id << 4) |
517              (((timestamp >> 30) & 0x07) << 1) |
518              1);
519     avio_wb16(pb, (uint16_t)((((timestamp >> 15) & 0x7fff) << 1) | 1));
520     avio_wb16(pb, (uint16_t)((((timestamp      ) & 0x7fff) << 1) | 1));
521 }
522
523
524 /* return the number of padding bytes that should be inserted into
525    the multiplexed stream.*/
526 static int get_vcd_padding_size(AVFormatContext *ctx, int64_t pts)
527 {
528     MpegMuxContext *s = ctx->priv_data;
529     int pad_bytes = 0;
530
531     if (s->vcd_padding_bitrate > 0 && pts!=AV_NOPTS_VALUE)
532     {
533         int64_t full_pad_bytes;
534
535         full_pad_bytes = (int64_t)((s->vcd_padding_bitrate * (pts / 90000.0)) / 8.0); //FIXME this is wrong
536         pad_bytes = (int) (full_pad_bytes - s->vcd_padding_bytes_written);
537
538         if (pad_bytes<0)
539             /* might happen if we have already padded to a later timestamp. This
540                can occur if another stream has already advanced further.*/
541             pad_bytes=0;
542     }
543
544     return pad_bytes;
545 }
546
547
548 /* Write an MPEG padding packet header. */
549 static void put_padding_packet(AVFormatContext *ctx, AVIOContext *pb,int packet_bytes)
550 {
551     MpegMuxContext *s = ctx->priv_data;
552     int i;
553
554     avio_wb32(pb, PADDING_STREAM);
555     avio_wb16(pb, packet_bytes - 6);
556     if (!s->is_mpeg2) {
557         avio_w8(pb, 0x0f);
558         packet_bytes -= 7;
559     } else
560         packet_bytes -= 6;
561
562     for(i=0;i<packet_bytes;i++)
563         avio_w8(pb, 0xff);
564 }
565
566 static int get_nb_frames(AVFormatContext *ctx, StreamInfo *stream, int len){
567     int nb_frames=0;
568     PacketDesc *pkt_desc= stream->premux_packet;
569
570     while(len>0){
571         if(pkt_desc->size == pkt_desc->unwritten_size)
572             nb_frames++;
573         len -= pkt_desc->unwritten_size;
574         pkt_desc= pkt_desc->next;
575     }
576
577     return nb_frames;
578 }
579
580 /* flush the packet on stream stream_index */
581 static int flush_packet(AVFormatContext *ctx, int stream_index,
582                          int64_t pts, int64_t dts, int64_t scr, int trailer_size)
583 {
584     MpegMuxContext *s = ctx->priv_data;
585     StreamInfo *stream = ctx->streams[stream_index]->priv_data;
586     uint8_t *buf_ptr;
587     int size, payload_size, startcode, id, stuffing_size, i, header_len;
588     int packet_size;
589     uint8_t buffer[128];
590     int zero_trail_bytes = 0;
591     int pad_packet_bytes = 0;
592     int pes_flags;
593     int general_pack = 0;  /*"general" pack without data specific to one stream?*/
594     int nb_frames;
595
596     id = stream->id;
597
598     av_dlog(ctx, "packet ID=%2x PTS=%0.3f\n", id, pts / 90000.0);
599
600     buf_ptr = buffer;
601
602     if ((s->packet_number % s->pack_header_freq) == 0 || s->last_scr != scr) {
603         /* output pack and systems header if needed */
604         size = put_pack_header(ctx, buf_ptr, scr);
605         buf_ptr += size;
606         s->last_scr= scr;
607
608         if (s->is_vcd) {
609             /* there is exactly one system header for each stream in a VCD MPEG,
610                One in the very first video packet and one in the very first
611                audio packet (see VCD standard p. IV-7 and IV-8).*/
612
613             if (stream->packet_number==0) {
614                 size = put_system_header(ctx, buf_ptr, id);
615                 buf_ptr += size;
616             }
617         } else if (s->is_dvd) {
618             if (stream->align_iframe || s->packet_number == 0){
619                 int PES_bytes_to_fill = s->packet_size - size - 10;
620
621                 if (pts != AV_NOPTS_VALUE) {
622                     if (dts != pts)
623                         PES_bytes_to_fill -= 5 + 5;
624                     else
625                         PES_bytes_to_fill -= 5;
626                 }
627
628                 if (stream->bytes_to_iframe == 0 || s->packet_number == 0) {
629                     size = put_system_header(ctx, buf_ptr, 0);
630                     buf_ptr += size;
631                     size = buf_ptr - buffer;
632                     avio_write(ctx->pb, buffer, size);
633
634                     avio_wb32(ctx->pb, PRIVATE_STREAM_2);
635                     avio_wb16(ctx->pb, 0x03d4);         // length
636                     avio_w8(ctx->pb, 0x00);           // substream ID, 00=PCI
637                     for (i = 0; i < 979; i++)
638                         avio_w8(ctx->pb, 0x00);
639
640                     avio_wb32(ctx->pb, PRIVATE_STREAM_2);
641                     avio_wb16(ctx->pb, 0x03fa);         // length
642                     avio_w8(ctx->pb, 0x01);           // substream ID, 01=DSI
643                     for (i = 0; i < 1017; i++)
644                         avio_w8(ctx->pb, 0x00);
645
646                     memset(buffer, 0, 128);
647                     buf_ptr = buffer;
648                     s->packet_number++;
649                     stream->align_iframe = 0;
650                     scr += s->packet_size*90000LL / (s->mux_rate*50LL); //FIXME rounding and first few bytes of each packet
651                     size = put_pack_header(ctx, buf_ptr, scr);
652                     s->last_scr= scr;
653                     buf_ptr += size;
654                     /* GOP Start */
655                 } else if (stream->bytes_to_iframe < PES_bytes_to_fill) {
656                     pad_packet_bytes = PES_bytes_to_fill - stream->bytes_to_iframe;
657                 }
658             }
659         } else {
660             if ((s->packet_number % s->system_header_freq) == 0) {
661                 size = put_system_header(ctx, buf_ptr, 0);
662                 buf_ptr += size;
663             }
664         }
665     }
666     size = buf_ptr - buffer;
667     avio_write(ctx->pb, buffer, size);
668
669     packet_size = s->packet_size - size;
670
671     if (s->is_vcd && (id & 0xe0) == AUDIO_ID)
672         /* The VCD standard demands that 20 zero bytes follow
673            each audio pack (see standard p. IV-8).*/
674         zero_trail_bytes += 20;
675
676     if ((s->is_vcd && stream->packet_number==0)
677         || (s->is_svcd && s->packet_number==0)) {
678         /* for VCD the first pack of each stream contains only the pack header,
679            the system header and lots of padding (see VCD standard p. IV-6).
680            In the case of an audio pack, 20 zero bytes are also added at
681            the end.*/
682         /* For SVCD we fill the very first pack to increase compatibility with
683            some DVD players. Not mandated by the standard.*/
684         if (s->is_svcd)
685             general_pack = 1;    /* the system header refers to both streams and no stream data*/
686         pad_packet_bytes = packet_size - zero_trail_bytes;
687     }
688
689     packet_size -= pad_packet_bytes + zero_trail_bytes;
690
691     if (packet_size > 0) {
692
693         /* packet header size */
694         packet_size -= 6;
695
696         /* packet header */
697         if (s->is_mpeg2) {
698             header_len = 3;
699             if (stream->packet_number==0)
700                 header_len += 3; /* PES extension */
701             header_len += 1; /* obligatory stuffing byte */
702         } else {
703             header_len = 0;
704         }
705         if (pts != AV_NOPTS_VALUE) {
706             if (dts != pts)
707                 header_len += 5 + 5;
708             else
709                 header_len += 5;
710         } else {
711             if (!s->is_mpeg2)
712                 header_len++;
713         }
714
715         payload_size = packet_size - header_len;
716         if (id < 0xc0) {
717             startcode = PRIVATE_STREAM_1;
718             payload_size -= 1;
719             if (id >= 0x40) {
720                 payload_size -= 3;
721                 if (id >= 0xa0)
722                     payload_size -= 3;
723             }
724         } else {
725             startcode = 0x100 + id;
726         }
727
728         stuffing_size = payload_size - av_fifo_size(stream->fifo);
729
730         // first byte does not fit -> reset pts/dts + stuffing
731         if(payload_size <= trailer_size && pts != AV_NOPTS_VALUE){
732             int timestamp_len=0;
733             if(dts != pts)
734                 timestamp_len += 5;
735             if(pts != AV_NOPTS_VALUE)
736                 timestamp_len += s->is_mpeg2 ? 5 : 4;
737             pts=dts= AV_NOPTS_VALUE;
738             header_len -= timestamp_len;
739             if (s->is_dvd && stream->align_iframe) {
740                 pad_packet_bytes += timestamp_len;
741                 packet_size  -= timestamp_len;
742             } else {
743                 payload_size += timestamp_len;
744             }
745             stuffing_size += timestamp_len;
746             if(payload_size > trailer_size)
747                 stuffing_size += payload_size - trailer_size;
748         }
749
750         if (pad_packet_bytes > 0 && pad_packet_bytes <= 7) { // can't use padding, so use stuffing
751             packet_size += pad_packet_bytes;
752             payload_size += pad_packet_bytes; // undo the previous adjustment
753             if (stuffing_size < 0) {
754                 stuffing_size  = pad_packet_bytes;
755             } else {
756                 stuffing_size += pad_packet_bytes;
757             }
758             pad_packet_bytes = 0;
759         }
760
761         if (stuffing_size < 0)
762             stuffing_size = 0;
763
764         if (startcode == PRIVATE_STREAM_1 && id >= 0xa0) {
765             if (payload_size < av_fifo_size(stream->fifo))
766                 stuffing_size += payload_size % stream->lpcm_align;
767         }
768
769         if (stuffing_size > 16) {    /*<=16 for MPEG-1, <=32 for MPEG-2*/
770             pad_packet_bytes += stuffing_size;
771             packet_size      -= stuffing_size;
772             payload_size     -= stuffing_size;
773             stuffing_size = 0;
774         }
775
776         nb_frames= get_nb_frames(ctx, stream, payload_size - stuffing_size);
777
778         avio_wb32(ctx->pb, startcode);
779
780         avio_wb16(ctx->pb, packet_size);
781
782         if (!s->is_mpeg2)
783             for(i=0;i<stuffing_size;i++)
784                 avio_w8(ctx->pb, 0xff);
785
786         if (s->is_mpeg2) {
787             avio_w8(ctx->pb, 0x80); /* mpeg2 id */
788
789             pes_flags=0;
790
791             if (pts != AV_NOPTS_VALUE) {
792                 pes_flags |= 0x80;
793                 if (dts != pts)
794                     pes_flags |= 0x40;
795             }
796
797             /* Both the MPEG-2 and the SVCD standards demand that the
798                P-STD_buffer_size field be included in the first packet of
799                every stream. (see SVCD standard p. 26 V.2.3.1 and V.2.3.2
800                and MPEG-2 standard 2.7.7) */
801             if (stream->packet_number == 0)
802                 pes_flags |= 0x01;
803
804             avio_w8(ctx->pb, pes_flags); /* flags */
805             avio_w8(ctx->pb, header_len - 3 + stuffing_size);
806
807             if (pes_flags & 0x80)  /*write pts*/
808                 put_timestamp(ctx->pb, (pes_flags & 0x40) ? 0x03 : 0x02, pts);
809             if (pes_flags & 0x40)  /*write dts*/
810                 put_timestamp(ctx->pb, 0x01, dts);
811
812             if (pes_flags & 0x01) {  /*write pes extension*/
813                 avio_w8(ctx->pb, 0x10); /* flags */
814
815                 /* P-STD buffer info */
816                 if ((id & 0xe0) == AUDIO_ID)
817                     avio_wb16(ctx->pb, 0x4000 | stream->max_buffer_size/ 128);
818                 else
819                     avio_wb16(ctx->pb, 0x6000 | stream->max_buffer_size/1024);
820             }
821
822         } else {
823             if (pts != AV_NOPTS_VALUE) {
824                 if (dts != pts) {
825                     put_timestamp(ctx->pb, 0x03, pts);
826                     put_timestamp(ctx->pb, 0x01, dts);
827                 } else {
828                     put_timestamp(ctx->pb, 0x02, pts);
829                 }
830             } else {
831                 avio_w8(ctx->pb, 0x0f);
832             }
833         }
834
835         if (s->is_mpeg2) {
836             /* special stuffing byte that is always written
837                to prevent accidental generation of start codes. */
838             avio_w8(ctx->pb, 0xff);
839
840             for(i=0;i<stuffing_size;i++)
841                 avio_w8(ctx->pb, 0xff);
842         }
843
844         if (startcode == PRIVATE_STREAM_1) {
845             avio_w8(ctx->pb, id);
846             if (id >= 0xa0) {
847                 /* LPCM (XXX: check nb_frames) */
848                 avio_w8(ctx->pb, 7);
849                 avio_wb16(ctx->pb, 4); /* skip 3 header bytes */
850                 avio_w8(ctx->pb, stream->lpcm_header[0]);
851                 avio_w8(ctx->pb, stream->lpcm_header[1]);
852                 avio_w8(ctx->pb, stream->lpcm_header[2]);
853             } else if (id >= 0x40) {
854                 /* AC-3 */
855                 avio_w8(ctx->pb, nb_frames);
856                 avio_wb16(ctx->pb, trailer_size+1);
857             }
858         }
859
860         /* output data */
861         assert(payload_size - stuffing_size <= av_fifo_size(stream->fifo));
862         av_fifo_generic_read(stream->fifo, ctx->pb, payload_size - stuffing_size, (void*)avio_write);
863         stream->bytes_to_iframe -= payload_size - stuffing_size;
864     }else{
865         payload_size=
866         stuffing_size= 0;
867     }
868
869     if (pad_packet_bytes > 0)
870         put_padding_packet(ctx,ctx->pb, pad_packet_bytes);
871
872     for(i=0;i<zero_trail_bytes;i++)
873         avio_w8(ctx->pb, 0x00);
874
875     avio_flush(ctx->pb);
876
877     s->packet_number++;
878
879     /* only increase the stream packet number if this pack actually contains
880        something that is specific to this stream! I.e. a dedicated header
881        or some data.*/
882     if (!general_pack)
883         stream->packet_number++;
884
885     return payload_size - stuffing_size;
886 }
887
888 static void put_vcd_padding_sector(AVFormatContext *ctx)
889 {
890     /* There are two ways to do this padding: writing a sector/pack
891        of 0 values, or writing an MPEG padding pack. Both seem to
892        work with most decoders, BUT the VCD standard only allows a 0-sector
893        (see standard p. IV-4, IV-5).
894        So a 0-sector it is...*/
895
896     MpegMuxContext *s = ctx->priv_data;
897     int i;
898
899     for(i=0;i<s->packet_size;i++)
900         avio_w8(ctx->pb, 0);
901
902     s->vcd_padding_bytes_written += s->packet_size;
903
904     avio_flush(ctx->pb);
905
906     /* increasing the packet number is correct. The SCR of the following packs
907        is calculated from the packet_number and it has to include the padding
908        sector (it represents the sector index, not the MPEG pack index)
909        (see VCD standard p. IV-6)*/
910     s->packet_number++;
911 }
912
913 static int remove_decoded_packets(AVFormatContext *ctx, int64_t scr){
914 //    MpegMuxContext *s = ctx->priv_data;
915     int i;
916
917     for(i=0; i<ctx->nb_streams; i++){
918         AVStream *st = ctx->streams[i];
919         StreamInfo *stream = st->priv_data;
920         PacketDesc *pkt_desc;
921
922         while((pkt_desc= stream->predecode_packet)
923               && scr > pkt_desc->dts){ //FIXME > vs >=
924             if(stream->buffer_index < pkt_desc->size ||
925                stream->predecode_packet == stream->premux_packet){
926                 av_log(ctx, AV_LOG_ERROR,
927                        "buffer underflow st=%d bufi=%d size=%d\n",
928                        i, stream->buffer_index, pkt_desc->size);
929                 break;
930             }
931             stream->buffer_index -= pkt_desc->size;
932
933             stream->predecode_packet= pkt_desc->next;
934             av_freep(&pkt_desc);
935         }
936     }
937
938     return 0;
939 }
940
941 static int output_packet(AVFormatContext *ctx, int flush){
942     MpegMuxContext *s = ctx->priv_data;
943     AVStream *st;
944     StreamInfo *stream;
945     int i, avail_space=0, es_size, trailer_size;
946     int best_i= -1;
947     int best_score= INT_MIN;
948     int ignore_constraints=0;
949     int64_t scr= s->last_scr;
950     PacketDesc *timestamp_packet;
951     const int64_t max_delay= av_rescale(ctx->max_delay, 90000, AV_TIME_BASE);
952
953 retry:
954     for(i=0; i<ctx->nb_streams; i++){
955         AVStream *st = ctx->streams[i];
956         StreamInfo *stream = st->priv_data;
957         const int avail_data=  av_fifo_size(stream->fifo);
958         const int space= stream->max_buffer_size - stream->buffer_index;
959         int rel_space= 1024LL*space / stream->max_buffer_size;
960         PacketDesc *next_pkt= stream->premux_packet;
961
962         /* for subtitle, a single PES packet must be generated,
963            so we flush after every single subtitle packet */
964         if(s->packet_size > avail_data && !flush
965            && st->codec->codec_type != AVMEDIA_TYPE_SUBTITLE)
966             return 0;
967         if(avail_data==0)
968             continue;
969         av_assert0(avail_data>0);
970
971         if(space < s->packet_size && !ignore_constraints)
972             continue;
973
974         if(next_pkt && next_pkt->dts - scr > max_delay)
975             continue;
976         if (   stream->predecode_packet
977             && stream->predecode_packet->size > stream->buffer_index)
978             rel_space += 1<<28;
979         if(rel_space > best_score){
980             best_score= rel_space;
981             best_i = i;
982             avail_space= space;
983         }
984     }
985
986     if(best_i < 0){
987         int64_t best_dts= INT64_MAX;
988
989         for(i=0; i<ctx->nb_streams; i++){
990             AVStream *st = ctx->streams[i];
991             StreamInfo *stream = st->priv_data;
992             PacketDesc *pkt_desc= stream->predecode_packet;
993             if(pkt_desc && pkt_desc->dts < best_dts)
994                 best_dts= pkt_desc->dts;
995         }
996
997         av_dlog(ctx, "bumping scr, scr:%f, dts:%f\n",
998                 scr / 90000.0, best_dts / 90000.0);
999         if(best_dts == INT64_MAX)
1000             return 0;
1001
1002         if(scr >= best_dts+1 && !ignore_constraints){
1003             av_log(ctx, AV_LOG_ERROR, "packet too large, ignoring buffer limits to mux it\n");
1004             ignore_constraints= 1;
1005         }
1006         scr= FFMAX(best_dts+1, scr);
1007         if(remove_decoded_packets(ctx, scr) < 0)
1008             return -1;
1009         goto retry;
1010     }
1011
1012     assert(best_i >= 0);
1013
1014     st = ctx->streams[best_i];
1015     stream = st->priv_data;
1016
1017     assert(av_fifo_size(stream->fifo) > 0);
1018
1019     assert(avail_space >= s->packet_size || ignore_constraints);
1020
1021     timestamp_packet= stream->premux_packet;
1022     if(timestamp_packet->unwritten_size == timestamp_packet->size){
1023         trailer_size= 0;
1024     }else{
1025         trailer_size= timestamp_packet->unwritten_size;
1026         timestamp_packet= timestamp_packet->next;
1027     }
1028
1029     if(timestamp_packet){
1030         av_dlog(ctx, "dts:%f pts:%f scr:%f stream:%d\n",
1031                 timestamp_packet->dts / 90000.0,
1032                 timestamp_packet->pts / 90000.0,
1033                 scr / 90000.0, best_i);
1034         es_size= flush_packet(ctx, best_i, timestamp_packet->pts, timestamp_packet->dts, scr, trailer_size);
1035     }else{
1036         assert(av_fifo_size(stream->fifo) == trailer_size);
1037         es_size= flush_packet(ctx, best_i, AV_NOPTS_VALUE, AV_NOPTS_VALUE, scr, trailer_size);
1038     }
1039
1040     if (s->is_vcd) {
1041         /* Write one or more padding sectors, if necessary, to reach
1042            the constant overall bitrate.*/
1043         int vcd_pad_bytes;
1044
1045         while((vcd_pad_bytes = get_vcd_padding_size(ctx,stream->premux_packet->pts) ) >= s->packet_size){ //FIXME pts cannot be correct here
1046             put_vcd_padding_sector(ctx);
1047             s->last_scr += s->packet_size*90000LL / (s->mux_rate*50LL); //FIXME rounding and first few bytes of each packet
1048         }
1049     }
1050
1051     stream->buffer_index += es_size;
1052     s->last_scr += s->packet_size*90000LL / (s->mux_rate*50LL); //FIXME rounding and first few bytes of each packet
1053
1054     while(stream->premux_packet && stream->premux_packet->unwritten_size <= es_size){
1055         es_size -= stream->premux_packet->unwritten_size;
1056         stream->premux_packet= stream->premux_packet->next;
1057     }
1058     if(es_size)
1059         stream->premux_packet->unwritten_size -= es_size;
1060
1061     if(remove_decoded_packets(ctx, s->last_scr) < 0)
1062         return -1;
1063
1064     return 1;
1065 }
1066
1067 static int mpeg_mux_write_packet(AVFormatContext *ctx, AVPacket *pkt)
1068 {
1069     MpegMuxContext *s = ctx->priv_data;
1070     int stream_index= pkt->stream_index;
1071     int size= pkt->size;
1072     uint8_t *buf= pkt->data;
1073     AVStream *st = ctx->streams[stream_index];
1074     StreamInfo *stream = st->priv_data;
1075     int64_t pts, dts;
1076     PacketDesc *pkt_desc;
1077     int preload;
1078     const int is_iframe = st->codec->codec_type == AVMEDIA_TYPE_VIDEO && (pkt->flags & AV_PKT_FLAG_KEY);
1079
1080     preload = av_rescale(s->preload, 90000, AV_TIME_BASE);
1081
1082     pts= pkt->pts;
1083     dts= pkt->dts;
1084
1085     if (s->last_scr == AV_NOPTS_VALUE) {
1086         if (dts == AV_NOPTS_VALUE || (dts < preload && ctx->avoid_negative_ts) || s->is_dvd) {
1087             if (dts != AV_NOPTS_VALUE)
1088                 s->preload += av_rescale(-dts, AV_TIME_BASE, 90000);
1089             s->last_scr = 0;
1090         } else {
1091             s->last_scr = dts - preload;
1092             s->preload = 0;
1093         }
1094         preload = av_rescale(s->preload, 90000, AV_TIME_BASE);
1095         av_log(ctx, AV_LOG_DEBUG, "First SCR: %"PRId64" First DTS: %"PRId64"\n", s->last_scr, dts + preload);
1096     }
1097
1098     if (dts != AV_NOPTS_VALUE) dts += preload;
1099     if (pts != AV_NOPTS_VALUE) pts += preload;
1100
1101     av_dlog(ctx, "dts:%f pts:%f flags:%d stream:%d nopts:%d\n",
1102             dts / 90000.0, pts / 90000.0, pkt->flags,
1103             pkt->stream_index, pts != AV_NOPTS_VALUE);
1104     if (!stream->premux_packet)
1105         stream->next_packet = &stream->premux_packet;
1106     *stream->next_packet=
1107     pkt_desc= av_mallocz(sizeof(PacketDesc));
1108     pkt_desc->pts= pts;
1109     pkt_desc->dts= dts;
1110     pkt_desc->unwritten_size=
1111     pkt_desc->size= size;
1112     if(!stream->predecode_packet)
1113         stream->predecode_packet= pkt_desc;
1114     stream->next_packet= &pkt_desc->next;
1115
1116     if (av_fifo_realloc2(stream->fifo, av_fifo_size(stream->fifo) + size) < 0)
1117         return -1;
1118
1119     if (s->is_dvd){
1120         if (is_iframe && (s->packet_number == 0 || (pts - stream->vobu_start_pts >= 36000))) { // min VOBU length 0.4 seconds (mpucoder)
1121             stream->bytes_to_iframe = av_fifo_size(stream->fifo);
1122             stream->align_iframe = 1;
1123             stream->vobu_start_pts = pts;
1124         }
1125     }
1126
1127     av_fifo_generic_write(stream->fifo, buf, size, NULL);
1128
1129     for(;;){
1130         int ret= output_packet(ctx, 0);
1131         if(ret<=0)
1132             return ret;
1133     }
1134 }
1135
1136 static int mpeg_mux_end(AVFormatContext *ctx)
1137 {
1138 //    MpegMuxContext *s = ctx->priv_data;
1139     StreamInfo *stream;
1140     int i;
1141
1142     for(;;){
1143         int ret= output_packet(ctx, 1);
1144         if(ret<0)
1145             return ret;
1146         else if(ret==0)
1147             break;
1148     }
1149
1150     /* End header according to MPEG1 systems standard. We do not write
1151        it as it is usually not needed by decoders and because it
1152        complicates MPEG stream concatenation. */
1153     //avio_wb32(ctx->pb, ISO_11172_END_CODE);
1154     //avio_flush(ctx->pb);
1155
1156     for(i=0;i<ctx->nb_streams;i++) {
1157         stream = ctx->streams[i]->priv_data;
1158
1159         assert(av_fifo_size(stream->fifo) == 0);
1160         av_fifo_free(stream->fifo);
1161     }
1162     return 0;
1163 }
1164
1165 #define OFFSET(x) offsetof(MpegMuxContext, x)
1166 #define E AV_OPT_FLAG_ENCODING_PARAM
1167 static const AVOption options[] = {
1168     { "muxrate", NULL, OFFSET(user_mux_rate), AV_OPT_TYPE_INT, {.i64 = 0}, 0, ((1<<22) - 1) * (8 * 50), E },
1169     { "preload", "Initial demux-decode delay in microseconds.", OFFSET(preload),  AV_OPT_TYPE_INT, {.i64 = 500000}, 0, INT_MAX, E},
1170     { NULL },
1171 };
1172
1173 #define MPEGENC_CLASS(flavor)\
1174 static const AVClass flavor ## _class = {\
1175     .class_name = #flavor " muxer",\
1176     .item_name  = av_default_item_name,\
1177     .version    = LIBAVUTIL_VERSION_INT,\
1178     .option     = options,\
1179 };
1180
1181 #if CONFIG_MPEG1SYSTEM_MUXER
1182 MPEGENC_CLASS(mpeg)
1183 AVOutputFormat ff_mpeg1system_muxer = {
1184     .name              = "mpeg",
1185     .long_name         = NULL_IF_CONFIG_SMALL("MPEG-1 Systems / MPEG program stream"),
1186     .mime_type         = "video/mpeg",
1187     .extensions        = "mpg,mpeg",
1188     .priv_data_size    = sizeof(MpegMuxContext),
1189     .audio_codec       = AV_CODEC_ID_MP2,
1190     .video_codec       = AV_CODEC_ID_MPEG1VIDEO,
1191     .write_header      = mpeg_mux_init,
1192     .write_packet      = mpeg_mux_write_packet,
1193     .write_trailer     = mpeg_mux_end,
1194     .priv_class        = &mpeg_class,
1195 };
1196 #endif
1197 #if CONFIG_MPEG1VCD_MUXER
1198 MPEGENC_CLASS(vcd)
1199 AVOutputFormat ff_mpeg1vcd_muxer = {
1200     .name              = "vcd",
1201     .long_name         = NULL_IF_CONFIG_SMALL("MPEG-1 Systems / MPEG program stream (VCD)"),
1202     .mime_type         = "video/mpeg",
1203     .priv_data_size    = sizeof(MpegMuxContext),
1204     .audio_codec       = AV_CODEC_ID_MP2,
1205     .video_codec       = AV_CODEC_ID_MPEG1VIDEO,
1206     .write_header      = mpeg_mux_init,
1207     .write_packet      = mpeg_mux_write_packet,
1208     .write_trailer     = mpeg_mux_end,
1209     .priv_class        = &vcd_class,
1210 };
1211 #endif
1212 #if CONFIG_MPEG2VOB_MUXER
1213 MPEGENC_CLASS(vob)
1214 AVOutputFormat ff_mpeg2vob_muxer = {
1215     .name              = "vob",
1216     .long_name         = NULL_IF_CONFIG_SMALL("MPEG-2 PS (VOB)"),
1217     .mime_type         = "video/mpeg",
1218     .extensions        = "vob",
1219     .priv_data_size    = sizeof(MpegMuxContext),
1220     .audio_codec       = AV_CODEC_ID_MP2,
1221     .video_codec       = AV_CODEC_ID_MPEG2VIDEO,
1222     .write_header      = mpeg_mux_init,
1223     .write_packet      = mpeg_mux_write_packet,
1224     .write_trailer     = mpeg_mux_end,
1225     .priv_class        = &vob_class,
1226 };
1227 #endif
1228
1229 /* Same as mpeg2vob_mux except that the pack size is 2324 */
1230 #if CONFIG_MPEG2SVCD_MUXER
1231 MPEGENC_CLASS(svcd)
1232 AVOutputFormat ff_mpeg2svcd_muxer = {
1233     .name              = "svcd",
1234     .long_name         = NULL_IF_CONFIG_SMALL("MPEG-2 PS (SVCD)"),
1235     .mime_type         = "video/mpeg",
1236     .extensions        = "vob",
1237     .priv_data_size    = sizeof(MpegMuxContext),
1238     .audio_codec       = AV_CODEC_ID_MP2,
1239     .video_codec       = AV_CODEC_ID_MPEG2VIDEO,
1240     .write_header      = mpeg_mux_init,
1241     .write_packet      = mpeg_mux_write_packet,
1242     .write_trailer     = mpeg_mux_end,
1243     .priv_class        = &svcd_class,
1244 };
1245 #endif
1246
1247 /*  Same as mpeg2vob_mux except the 'is_dvd' flag is set to produce NAV pkts */
1248 #if CONFIG_MPEG2DVD_MUXER
1249 MPEGENC_CLASS(dvd)
1250 AVOutputFormat ff_mpeg2dvd_muxer = {
1251     .name              = "dvd",
1252     .long_name         = NULL_IF_CONFIG_SMALL("MPEG-2 PS (DVD VOB)"),
1253     .mime_type         = "video/mpeg",
1254     .extensions        = "dvd",
1255     .priv_data_size    = sizeof(MpegMuxContext),
1256     .audio_codec       = AV_CODEC_ID_MP2,
1257     .video_codec       = AV_CODEC_ID_MPEG2VIDEO,
1258     .write_header      = mpeg_mux_init,
1259     .write_packet      = mpeg_mux_write_packet,
1260     .write_trailer     = mpeg_mux_end,
1261     .priv_class        = &dvd_class,
1262 };
1263 #endif