summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-04 01:18:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-04 01:18:39 +0100
commit3dae05f4f7a8e9b2859acb3b6d8c13316ef318ef (patch)
tree7720700c95dd7a5441f4ebf3548b2a00d53345e8 /libavformat/mpegts.c
parent09711545f5d256bd3ac77004d123dae36c5db8f9 (diff)
avformat/mpegts: also print PMT version in av_dlog()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r--libavformat/mpegts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 45e0719df3..97e07a7f72 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -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;