diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 04:41:47 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 04:41:47 +0000 |
commit | fc72ad1990f011c703ef245ce91138c143c317bb (patch) | |
tree | 9d212ed62d03458743311c36f76606947b93df91 /libavformat | |
parent | 7e69621f56455f4f886e358c7e31a7a9b6e9b51e (diff) | |
download | ffmpeg-fc72ad1990f011c703ef245ce91138c143c317bb.tar.gz |
print registration descriptor in debug
Originally committed as revision 19019 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 2800827cfc..e60cda3eb7 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -709,6 +709,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len break; case 0x05: /* registration descriptor */ st->codec->codec_tag = bytestream_get_le32(&p); + dprintf("reg_desc=%x\n", st->codec->codec_tag); if (st->codec->codec_id == CODEC_ID_PROBE && stream_type == STREAM_TYPE_PRIVATE_DATA) mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types); |