Commit 3dae05f4 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpegts: also print PMT version in av_dlog()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 09711545
......@@ -1798,8 +1798,8 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
if (parse_section_header(h, &p, p_end) < 0)
return;
av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d\n",
h->id, h->sec_num, h->last_sec_num);
av_dlog(ts->stream, "sid=0x%x sec_num=%d/%d version=%d\n",
h->id, h->sec_num, h->last_sec_num, h->version);
if (h->tid != PMT_TID)
return;
......
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