Commit 907d9166 authored by Mike Scheutzow's avatar Mike Scheutzow Committed by Baptiste Coudurier

print more debug info about muxing parameters, patch by Mike Scheutzow,...

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
parent c054f372
...@@ -471,9 +471,6 @@ static int mpegts_write_header(AVFormatContext *s) ...@@ -471,9 +471,6 @@ static int mpegts_write_header(AVFormatContext *s)
1000 * 8 * pat_pmt_size / SDT_RETRANS_TIME + /* PAT+PMT size */ 1000 * 8 * pat_pmt_size / SDT_RETRANS_TIME + /* PAT+PMT size */
1000 * 8 * 8 / PCR_RETRANS_TIME; /* PCR 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) if (s->mux_rate)
ts->mux_rate = s->mux_rate; ts->mux_rate = s->mux_rate;
else else
...@@ -489,6 +486,12 @@ static int mpegts_write_header(AVFormatContext *s) ...@@ -489,6 +486,12 @@ static int mpegts_write_header(AVFormatContext *s)
// output a PCR as soon as possible // output a PCR as soon as possible
service->pcr_packet_count = service->pcr_packet_period; 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 // adjust pcr
ts->cur_pcr /= ts->mux_rate; ts->cur_pcr /= ts->mux_rate;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment