mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
print more debug info about muxing parameters, patch by Mike Scheutzow, scheutzow at alcatel-lucent dot com
Originally committed as revision 21201 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c054f372e0
commit
907d916627
@ -471,9 +471,6 @@ static int mpegts_write_header(AVFormatContext *s)
|
||||
1000 * 8 * pat_pmt_size / SDT_RETRANS_TIME + /* PAT+PMT size */
|
||||
1000 * 8 * 8 / PCR_RETRANS_TIME; /* PCR size */
|
||||
|
||||
av_log(s, AV_LOG_DEBUG, "muxrate %d freq sdt %d pat %d\n",
|
||||
total_bit_rate, ts->sdt_packet_period, ts->pat_packet_period);
|
||||
|
||||
if (s->mux_rate)
|
||||
ts->mux_rate = s->mux_rate;
|
||||
else
|
||||
@ -489,6 +486,12 @@ static int mpegts_write_header(AVFormatContext *s)
|
||||
// output a PCR as soon as possible
|
||||
service->pcr_packet_count = service->pcr_packet_period;
|
||||
|
||||
av_log(s, AV_LOG_DEBUG,
|
||||
"calculated bitrate %d bps, muxrate %d bps, "
|
||||
"sdt every %d, pat/pmt every %d pkts\n",
|
||||
total_bit_rate, ts->mux_rate, ts->sdt_packet_period,
|
||||
ts->pat_packet_period);
|
||||
|
||||
// adjust pcr
|
||||
ts->cur_pcr /= ts->mux_rate;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user