[SCM] libav/experimental: print reg desc in a more friendly way

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:46:55 UTC 2013


The following commit has been merged in the experimental branch:
commit 1f07654330b1bbe3a75a0b0273cf004bfe2781a1
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Sun May 31 04:47:30 2009 +0000

    print reg desc in a more friendly way
    
    Originally committed as revision 19021 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 0c1ca81..e78510f 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(ts->stream, "reg_desc=%x\n", st->codec->codec_tag);
+                dprintf(ts->stream, "reg_desc=%.4s\n", (char*)&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);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list