Searched refs:mux_rate (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmpegtsenc.c70 int mux_rate; ///< set to 1 when VBR member in struct:MpegTSWrite
96 { "muxrate", NULL, offsetof(MpegTSWrite, mux_rate), AV_OPT_TYPE_INT, {1}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
553 if (s->mux_rate)
554 ts->mux_rate = s->mux_rate;
557 if (ts->mux_rate > 1) {
558 service->pcr_packet_period = (ts->mux_rate * PCR_RETRANS_TIME) /
560 ts->sdt_packet_period = (ts->mux_rate * SDT_RETRANS_TIME) /
562 ts->pat_packet_period = (ts->mux_rate * PAT_RETRANS_TIME) /
591 if (ts->mux_rate
[all...]
H A Dmpegenc.c68 int mux_rate; /* bitrate in units of 50 bytes/s */ member in struct:__anon2220
114 put_bits(&pb, 22, s->mux_rate);
137 put_bits(&pb, 22, s->mux_rate); /* maximum bit rate of the multiplexed stream */
425 if(ctx->mux_rate){
426 s->mux_rate= (ctx->mux_rate + (8 * 50) - 1) / (8 * 50);
429 if (!s->mux_rate) {
434 s->mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
440 /* The VCD standard mandates that the mux_rate field is 3528
445 not 2352. But the standard explicitly specifies that the mux_rate
[all...]
H A Doptions.c92 {"muxrate", "set mux rate", OFFSET(mux_rate), AV_OPT_TYPE_INT, {.dbl = DEFAULT }, 0, INT_MAX, E},
H A Davformat.h969 attribute_deprecated int mux_rate; member in struct:AVFormatContext
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmpegtsenc.c71 int mux_rate; ///< set to 1 when VBR member in struct:MpegTSWrite
533 return av_rescale(avio_tell(pb) + 11, 8 * PCR_TIME_BASE, ts->mux_rate) +
694 if (ts->mux_rate > 1) {
695 service->pcr_packet_period = (ts->mux_rate * ts->pcr_period) /
697 ts->sdt_packet_period = (ts->mux_rate * SDT_RETRANS_TIME) /
699 ts->pat_packet_period = (ts->mux_rate * PAT_RETRANS_TIME) /
732 if (ts->mux_rate == 1)
735 av_log(s, AV_LOG_VERBOSE, "muxrate %d, ", ts->mux_rate);
919 if (ts->mux_rate > 1 || is_start) // VBR pcr period is based on frames
928 if (ts->mux_rate >
[all...]
H A Dmpegenc.c72 int mux_rate; /* bitrate in units of 50 bytes/s */ member in struct:__anon3573
118 put_bits(&pb, 22, s->mux_rate);
141 put_bits(&pb, 22, s->mux_rate); /* maximum bit rate of the multiplexed stream */
437 s->mux_rate = (s->user_mux_rate + (8 * 50) - 1) / (8 * 50);
443 s->mux_rate = (bitrate + (8 * 50) - 1) / (8 * 50);
444 if (s->mux_rate >= (1<<22)) {
445 av_log(ctx, AV_LOG_WARNING, "mux rate %d is too large\n", s->mux_rate);
446 s->mux_rate = (1<<22) - 1;
453 /* The VCD standard mandates that the mux_rate field is 3528
458 not 2352. But the standard explicitly specifies that the mux_rate
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavformat/
H A Davformat.h634 int mux_rate; member in struct:AVFormatContext

Completed in 180 milliseconds