diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 04:45:51 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-31 04:45:51 +0000 |
commit | ad183ff4e2b017deced0d8853648c4d584a96cf4 (patch) | |
tree | 75c5e25794ab0878609be1b3274b9a69e1a817c3 /libavformat | |
parent | fc72ad1990f011c703ef245ce91138c143c317bb (diff) | |
download | ffmpeg-ad183ff4e2b017deced0d8853648c4d584a96cf4.tar.gz |
give context to dprintf
Originally committed as revision 19020 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index e60cda3eb7..0c1ca81b83 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -709,7 +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); + dprintf(ts->stream, "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); |