31 #define MAX_PAYLOAD_SIZE 4096
90 uint8_t *buf, int64_t timestamp)
103 put_bits(&pb, 3, (uint32_t)((timestamp >> 30) & 0x07));
105 put_bits(&pb, 15, (uint32_t)((timestamp >> 15) & 0x7fff));
107 put_bits(&pb, 15, (uint32_t)((timestamp ) & 0x7fff));
128 int size, i, private_stream_coded,
id;
184 int P_STD_max_video = 0;
185 int P_STD_max_mpeg_audio = 0;
186 int P_STD_max_mpeg_PS1 = 0;
194 }
else if (
id >= 0xc0 && id <= 0xc7 && stream->max_buffer_size > P_STD_max_mpeg_audio) {
205 put_bits(&pb, 13, P_STD_max_video / 1024);
208 if (P_STD_max_mpeg_audio == 0)
209 P_STD_max_mpeg_audio = 4096;
213 put_bits(&pb, 13, P_STD_max_mpeg_audio / 128);
219 put_bits(&pb, 13, P_STD_max_mpeg_PS1 / 128);
229 private_stream_coded = 0;
237 if ( !s->
is_vcd || stream->
id==only_for_stream_id
238 || only_for_stream_id==0) {
243 if (private_stream_coded)
245 private_stream_coded = 1;
266 buf[4] = (size - 6) >> 8;
267 buf[5] = (size - 6) & 0xff;
274 int buf_index, i, private_stream_coded;
282 private_stream_coded = 0;
285 if (stream->
id < 0xc0) {
286 if (private_stream_coded)
288 private_stream_coded = 1;
298 int bitrate, i, mpa_id, mpv_id, mps_id, ac3_id, dts_id, lpcm_id, j;
347 stream->
id = ac3_id++;
349 stream->
id = dts_id++;
351 stream->
id = lpcm_id++;
352 for(j = 0; j < 4; j++) {
365 stream->
id = mpa_id++;
374 stream->
id = mpv_id++;
384 stream->
id = mps_id++;
410 bitrate += codec_rate;
413 audio_bitrate += codec_rate;
415 video_bitrate += codec_rate;
421 bitrate += bitrate / 20;
423 s->
mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
427 double overhead_rate;
447 overhead_rate = ((audio_bitrate / 8.0) / 2279) * (2324 - 2279);
448 overhead_rate += ((video_bitrate / 8.0) / 2294) * (2324 - 2294);
495 (((timestamp >> 30) & 0x07) << 1) |
497 avio_wb16(pb, (uint16_t)((((timestamp >> 15) & 0x7fff) << 1) | 1));
498 avio_wb16(pb, (uint16_t)((((timestamp ) & 0x7fff) << 1) | 1));
511 int64_t full_pad_bytes;
540 for(i=0;i<packet_bytes;i++)
552 pkt_desc= pkt_desc->
next;
560 int64_t pts, int64_t dts, int64_t scr,
int trailer_size)
565 int size, payload_size, startcode,
id, stuffing_size, i, header_len;
568 int zero_trail_bytes = 0;
569 int pad_packet_bytes = 0;
571 int general_pack = 0;
576 av_dlog(ctx,
"packet ID=%2x PTS=%0.3f\n",
id, pts / 90000.0);
597 int PES_bytes_to_fill = s->
packet_size - size - 10;
601 PES_bytes_to_fill -= 5 + 5;
603 PES_bytes_to_fill -= 5;
615 for (i = 0; i < 979; i++)
621 for (i = 0; i < 1017; i++)
624 memset(buffer, 0, 128);
652 zero_trail_bytes += 20;
664 pad_packet_bytes = packet_size - zero_trail_bytes;
667 packet_size -= pad_packet_bytes + zero_trail_bytes;
669 if (packet_size > 0) {
693 payload_size = packet_size - header_len;
703 startcode = 0x100 +
id;
714 timestamp_len += s->
is_mpeg2 ? 5 : 4;
716 header_len -= timestamp_len;
718 pad_packet_bytes += timestamp_len;
719 packet_size -= timestamp_len;
721 payload_size += timestamp_len;
723 stuffing_size += timestamp_len;
724 if(payload_size > trailer_size)
725 stuffing_size += payload_size - trailer_size;
728 if (pad_packet_bytes > 0 && pad_packet_bytes <= 7) {
729 packet_size += pad_packet_bytes;
730 payload_size += pad_packet_bytes;
731 if (stuffing_size < 0) {
732 stuffing_size = pad_packet_bytes;
734 stuffing_size += pad_packet_bytes;
736 pad_packet_bytes = 0;
739 if (stuffing_size < 0)
744 stuffing_size += payload_size % stream->
lpcm_align;
747 if (stuffing_size > 16) {
748 pad_packet_bytes += stuffing_size;
749 packet_size -= stuffing_size;
750 payload_size -= stuffing_size;
754 nb_frames=
get_nb_frames(ctx, stream, payload_size - stuffing_size);
761 for(i=0;i<stuffing_size;i++)
783 avio_w8(ctx->
pb, header_len - 3 + stuffing_size);
785 if (pes_flags & 0x80)
787 if (pes_flags & 0x40)
790 if (pes_flags & 0x01) {
818 for(i=0;i<stuffing_size;i++)
831 }
else if (
id >= 0x40) {
847 if (pad_packet_bytes > 0)
850 for(i=0;i<zero_trail_bytes;i++)
863 return payload_size - stuffing_size;
901 && scr > pkt_desc->
dts){
905 "buffer underflow i=%d bufi=%d size=%d\n",
923 int i, avail_space=0, es_size, trailer_size;
925 int best_score= INT_MIN;
926 int ignore_constraints=0;
947 assert(avail_data>0);
949 if(space < s->packet_size && !ignore_constraints)
952 if(next_pkt && next_pkt->
dts - scr > max_delay)
955 if(rel_space > best_score){
956 best_score= rel_space;
963 int64_t best_dts= INT64_MAX;
969 if(pkt_desc && pkt_desc->
dts < best_dts)
970 best_dts= pkt_desc->
dts;
973 av_dlog(ctx,
"bumping scr, scr:%f, dts:%f\n",
974 scr / 90000.0, best_dts / 90000.0);
975 if(best_dts == INT64_MAX)
978 if(scr >= best_dts+1 && !ignore_constraints){
980 ignore_constraints= 1;
982 scr=
FFMAX(best_dts+1, scr);
995 assert(avail_space >= s->
packet_size || ignore_constraints);
1002 timestamp_packet= timestamp_packet->
next;
1005 if(timestamp_packet){
1006 av_dlog(ctx,
"dts:%f pts:%f scr:%f stream:%d\n",
1007 timestamp_packet->
dts / 90000.0,
1008 timestamp_packet->
pts / 90000.0,
1009 scr / 90000.0, best_i);
1010 es_size=
flush_packet(ctx, best_i, timestamp_packet->
pts, timestamp_packet->
dts, scr, trailer_size);
1068 av_dlog(ctx,
"dts:%f pts:%f flags:%d stream:%d nopts:%d\n",
1069 dts / 90000.0, pts / 90000.0, pkt->
flags,
1132 #define OFFSET(x) offsetof(MpegMuxContext, x)
1133 #define E AV_OPT_FLAG_ENCODING_PARAM
1136 {
"preload",
"Initial demux-decode delay in microseconds.",
OFFSET(preload),
AV_OPT_TYPE_INT, {.i64 = 500000}, 0, INT_MAX,
E},
1140 #define MPEGENC_CLASS(flavor)\
1141 static const AVClass flavor ## _class = {\
1142 .class_name = #flavor " muxer",\
1143 .item_name = av_default_item_name,\
1144 .version = LIBAVUTIL_VERSION_INT,\
1148 #if CONFIG_MPEG1SYSTEM_MUXER
1153 .mime_type =
"video/mpeg",
1154 .extensions =
"mpg,mpeg",
1161 .priv_class = &mpeg_class,
1164 #if CONFIG_MPEG1VCD_MUXER
1169 .mime_type =
"video/mpeg",
1176 .priv_class = &vcd_class,
1179 #if CONFIG_MPEG2VOB_MUXER
1184 .mime_type =
"video/mpeg",
1185 .extensions =
"vob",
1192 .priv_class = &vob_class,
1197 #if CONFIG_MPEG2SVCD_MUXER
1202 .mime_type =
"video/mpeg",
1203 .extensions =
"vob",
1210 .priv_class = &svcd_class,
1215 #if CONFIG_MPEG2DVD_MUXER
1220 .mime_type =
"video/mpeg",
1221 .extensions =
"dvd",
1228 .priv_class = &dvd_class,
static void av_unused put_bits32(PutBitContext *s, uint32_t value)
Write exactly 32 bits into a bitstream.
static int put_pack_header(AVFormatContext *ctx, uint8_t *buf, int64_t timestamp)
static const AVOption options[]
PacketDesc ** next_packet
static int remove_decoded_packets(AVFormatContext *ctx, int64_t scr)
static int get_system_header_size(AVFormatContext *ctx)
static const int lpcm_freq_tab[4]
static int get_nb_frames(AVFormatContext *ctx, StreamInfo *stream, int len)
struct PacketDesc PacketDesc
int64_t vcd_padding_bytes_written
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
double vcd_padding_bitrate
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int(*func)(void *, void *, int))
Feed data from a user-supplied callback to an AVFifoBuffer.
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
static int output_packet(AVFormatContext *ctx, int flush)
static int flush_packet(AVFormatContext *ctx, int stream_index, int64_t pts, int64_t dts, int64_t scr, int trailer_size)
AVOutputFormat ff_mpeg2svcd_muxer
#define SYSTEM_HEADER_START_CODE
PacketDesc * predecode_packet
void av_fifo_free(AVFifoBuffer *f)
Free an AVFifoBuffer.
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
static int get_vcd_padding_size(AVFormatContext *ctx, int64_t pts)
struct AVOutputFormat * oformat
#define MPEGENC_CLASS(flavor)
static uint8_t * put_bits_ptr(PutBitContext *s)
Return the pointer to the byte where the bitstream writer will put the next bit.
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
int rc_max_rate
maximum bitrate
void av_log(void *avcl, int level, const char *fmt,...)
static void put_bits(PutBitContext *s, int n, unsigned int value)
Write up to 31 bits into a bitstream.
int flags
A combination of AV_PKT_FLAG values.
AVCodecContext * codec
Codec context associated with this stream.
int rc_buffer_size
decoder bitstream buffer size
unsigned int nb_streams
A list of all streams in the file.
static void put_timestamp(AVIOContext *pb, int id, int64_t timestamp)
int bit_rate
the average bitrate
int void avio_flush(AVIOContext *s)
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
AVOutputFormat ff_mpeg1vcd_muxer
static int mpeg_mux_init(AVFormatContext *ctx)
static void put_padding_packet(AVFormatContext *ctx, AVIOContext *pb, int packet_bytes)
preferred ID for MPEG-1/2 video decoding
enum AVMediaType codec_type
static void put_vcd_padding_sector(AVFormatContext *ctx)
static int mpeg_mux_end(AVFormatContext *ctx)
int sample_rate
samples per second
AVIOContext * pb
I/O context.
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
Resize an AVFifoBuffer.
void avio_w8(AVIOContext *s, int b)
a very simple circular buffer FIFO implementation
Describe the class of an AVClass context structure.
AVOutputFormat ff_mpeg2dvd_muxer
PacketDesc * premux_packet
void avio_wb16(AVIOContext *s, unsigned int val)
int av_fifo_size(AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
static av_cold void flush(AVCodecContext *avctx)
Flush (reset) the frame ID after seeking.
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
int channels
number of audio channels
void * priv_data
Format private data.
static void write_header(FFV1Context *f)
static int mpeg_mux_write_packet(AVFormatContext *ctx, AVPacket *pkt)
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
void avio_wb32(AVIOContext *s, unsigned int val)
static int put_system_header(AVFormatContext *ctx, uint8_t *buf, int only_for_stream_id)
This structure stores compressed data.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
if(!(ptr_align%ac->ptr_align)&&samples_align >=aligned_len)
AVOutputFormat ff_mpeg2vob_muxer