34 #define MAX_PAYLOAD_SIZE 4096
93 uint8_t *buf, int64_t timestamp)
106 put_bits(&pb, 3, (uint32_t)((timestamp >> 30) & 0x07));
108 put_bits(&pb, 15, (uint32_t)((timestamp >> 15) & 0x7fff));
110 put_bits(&pb, 15, (uint32_t)((timestamp ) & 0x7fff));
131 int size, i, private_stream_coded,
id;
187 int P_STD_max_video = 0;
188 int P_STD_max_mpeg_audio = 0;
189 int P_STD_max_mpeg_PS1 = 0;
197 }
else if (
id >= 0xc0 && id <= 0xc7 && stream->max_buffer_size > P_STD_max_mpeg_audio) {
208 put_bits(&pb, 13, P_STD_max_video / 1024);
211 if (P_STD_max_mpeg_audio == 0)
212 P_STD_max_mpeg_audio = 4096;
216 put_bits(&pb, 13, P_STD_max_mpeg_audio / 128);
222 put_bits(&pb, 13, P_STD_max_mpeg_PS1 / 128);
232 private_stream_coded = 0;
240 if ( !s->
is_vcd || stream->
id==only_for_stream_id
241 || only_for_stream_id==0) {
246 if (private_stream_coded)
248 private_stream_coded = 1;
269 buf[4] = (size - 6) >> 8;
270 buf[5] = (size - 6) & 0xff;
277 int buf_index, i, private_stream_coded;
285 private_stream_coded = 0;
288 if (stream->
id < 0xc0) {
289 if (private_stream_coded)
291 private_stream_coded = 1;
301 int bitrate, i, mpa_id, mpv_id, mps_id, ac3_id, dts_id, lpcm_id, j;
350 stream->
id = ac3_id++;
352 stream->
id = dts_id++;
354 stream->
id = lpcm_id++;
355 for(j = 0; j < 4; j++) {
368 stream->
id = mpa_id++;
377 stream->
id = mpv_id++;
387 stream->
id = mps_id++;
413 bitrate += codec_rate;
416 audio_bitrate += codec_rate;
418 video_bitrate += codec_rate;
424 bitrate += bitrate / 20;
426 s->
mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
430 double overhead_rate;
450 overhead_rate = ((audio_bitrate / 8.0) / 2279) * (2324 - 2279);
451 overhead_rate += ((video_bitrate / 8.0) / 2294) * (2324 - 2294);
498 (((timestamp >> 30) & 0x07) << 1) |
500 avio_wb16(pb, (uint16_t)((((timestamp >> 15) & 0x7fff) << 1) | 1));
501 avio_wb16(pb, (uint16_t)((((timestamp ) & 0x7fff) << 1) | 1));
514 int64_t full_pad_bytes;
543 for(i=0;i<packet_bytes;i++)
555 pkt_desc= pkt_desc->
next;
563 int64_t pts, int64_t dts, int64_t scr,
int trailer_size)
568 int size, payload_size, startcode,
id, stuffing_size, i, header_len;
571 int zero_trail_bytes = 0;
572 int pad_packet_bytes = 0;
574 int general_pack = 0;
579 av_dlog(ctx,
"packet ID=%2x PTS=%0.3f\n",
id, pts / 90000.0);
600 int PES_bytes_to_fill = s->
packet_size - size - 10;
604 PES_bytes_to_fill -= 5 + 5;
606 PES_bytes_to_fill -= 5;
618 for (i = 0; i < 979; i++)
624 for (i = 0; i < 1017; i++)
627 memset(buffer, 0, 128);
655 zero_trail_bytes += 20;
667 pad_packet_bytes = packet_size - zero_trail_bytes;
670 packet_size -= pad_packet_bytes + zero_trail_bytes;
672 if (packet_size > 0) {
696 payload_size = packet_size - header_len;
706 startcode = 0x100 +
id;
717 timestamp_len += s->
is_mpeg2 ? 5 : 4;
719 header_len -= timestamp_len;
721 pad_packet_bytes += timestamp_len;
722 packet_size -= timestamp_len;
724 payload_size += timestamp_len;
726 stuffing_size += timestamp_len;
727 if(payload_size > trailer_size)
728 stuffing_size += payload_size - trailer_size;
731 if (pad_packet_bytes > 0 && pad_packet_bytes <= 7) {
732 packet_size += pad_packet_bytes;
733 payload_size += pad_packet_bytes;
734 if (stuffing_size < 0) {
735 stuffing_size = pad_packet_bytes;
737 stuffing_size += pad_packet_bytes;
739 pad_packet_bytes = 0;
742 if (stuffing_size < 0)
747 stuffing_size += payload_size % stream->
lpcm_align;
750 if (stuffing_size > 16) {
751 pad_packet_bytes += stuffing_size;
752 packet_size -= stuffing_size;
753 payload_size -= stuffing_size;
757 nb_frames=
get_nb_frames(ctx, stream, payload_size - stuffing_size);
764 for(i=0;i<stuffing_size;i++)
786 avio_w8(ctx->
pb, header_len - 3 + stuffing_size);
788 if (pes_flags & 0x80)
790 if (pes_flags & 0x40)
793 if (pes_flags & 0x01) {
821 for(i=0;i<stuffing_size;i++)
834 }
else if (
id >= 0x40) {
850 if (pad_packet_bytes > 0)
853 for(i=0;i<zero_trail_bytes;i++)
866 return payload_size - stuffing_size;
904 && scr > pkt_desc->
dts){
908 "buffer underflow i=%d bufi=%d size=%d\n",
926 int i, avail_space=0, es_size, trailer_size;
928 int best_score= INT_MIN;
929 int ignore_constraints=0;
950 assert(avail_data>0);
952 if(space < s->packet_size && !ignore_constraints)
955 if(next_pkt && next_pkt->
dts - scr > max_delay)
958 if(rel_space > best_score){
959 best_score= rel_space;
966 int64_t best_dts= INT64_MAX;
972 if(pkt_desc && pkt_desc->
dts < best_dts)
973 best_dts= pkt_desc->
dts;
976 av_dlog(ctx,
"bumping scr, scr:%f, dts:%f\n",
977 scr / 90000.0, best_dts / 90000.0);
978 if(best_dts == INT64_MAX)
981 if(scr >= best_dts+1 && !ignore_constraints){
983 ignore_constraints= 1;
985 scr=
FFMAX(best_dts+1, scr);
998 assert(avail_space >= s->
packet_size || ignore_constraints);
1005 timestamp_packet= timestamp_packet->
next;
1008 if(timestamp_packet){
1009 av_dlog(ctx,
"dts:%f pts:%f scr:%f stream:%d\n",
1010 timestamp_packet->
dts / 90000.0,
1011 timestamp_packet->
pts / 90000.0,
1012 scr / 90000.0, best_i);
1013 es_size=
flush_packet(ctx, best_i, timestamp_packet->
pts, timestamp_packet->
dts, scr, trailer_size);
1071 av_dlog(ctx,
"dts:%f pts:%f flags:%d stream:%d nopts:%d\n",
1072 dts / 90000.0, pts / 90000.0, pkt->
flags,
1135 #define OFFSET(x) offsetof(MpegMuxContext, x)
1136 #define E AV_OPT_FLAG_ENCODING_PARAM
1139 {
"preload",
"Initial demux-decode delay in microseconds.",
OFFSET(preload),
AV_OPT_TYPE_INT, {.i64 = 500000}, 0, INT_MAX,
E},
1143 #define MPEGENC_CLASS(flavor)\
1144 static const AVClass flavor ## _class = {\
1145 .class_name = #flavor " muxer",\
1146 .item_name = av_default_item_name,\
1147 .version = LIBAVUTIL_VERSION_INT,\
1151 #if CONFIG_MPEG1SYSTEM_MUXER
1156 .mime_type =
"video/mpeg",
1157 .extensions =
"mpg,mpeg",
1164 .priv_class = &mpeg_class,
1167 #if CONFIG_MPEG1VCD_MUXER
1172 .mime_type =
"video/mpeg",
1179 .priv_class = &vcd_class,
1182 #if CONFIG_MPEG2VOB_MUXER
1187 .mime_type =
"video/mpeg",
1188 .extensions =
"vob",
1195 .priv_class = &vob_class,
1200 #if CONFIG_MPEG2SVCD_MUXER
1205 .mime_type =
"video/mpeg",
1206 .extensions =
"vob",
1213 .priv_class = &svcd_class,
1218 #if CONFIG_MPEG2DVD_MUXER
1223 .mime_type =
"video/mpeg",
1224 .extensions =
"dvd",
1231 .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 av_cold int mpeg_mux_init(AVFormatContext *ctx)
#define AV_LOG_WARNING
Something somehow does not look correct.
#define CONFIG_MPEG2VOB_MUXER
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)
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)
#define CONFIG_MPEG2SVCD_MUXER
double vcd_padding_bitrate
Macro definitions for various function/variable attributes.
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
AVStream ** streams
A list of all streams in the file.
#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
The output container format.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define MPEGENC_CLASS(flavor)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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
Number of elements in AVFormatContext.streams.
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.
#define AV_TIME_BASE
Internal time base represented as integer.
AVOutputFormat ff_mpeg1vcd_muxer
#define CONFIG_MPEG2DVD_MUXER
static void put_padding_packet(AVFormatContext *ctx, AVIOContext *pb, int packet_bytes)
preferred ID for MPEG-1/2 video decoding
if(ac->has_optimized_func)
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)
#define CONFIG_MPEG1VCD_MUXER
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...
#define AV_NOPTS_VALUE
Undefined timestamp value.
AVOutputFormat ff_mpeg2vob_muxer