]> git.sesse.net Git - ffmpeg/commitdiff
mpegts: Drop pointless casting of hex_dump_debug arguments
authorDiego Biurrun <diego@biurrun.de>
Mon, 1 Oct 2012 10:47:49 +0000 (12:47 +0200)
committerDiego Biurrun <diego@biurrun.de>
Mon, 1 Oct 2012 11:18:28 +0000 (13:18 +0200)
libavformat/mpegts.c

index 2d9b8a8358eb351cc0c5238cf45a9a0a9430d7e0..4aabcd7e60b61ce72d0549f0b0fab5d02d4e65a2 100644 (file)
@@ -1381,7 +1381,7 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
     int i;
 
     av_dlog(ts->stream, "PMT: len %i\n", section_len);
-    hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
+    hex_dump_debug(ts->stream, section, section_len);
 
     p_end = section + section_len - 4;
     p = section;
@@ -1518,7 +1518,7 @@ static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
     int sid, pmt_pid;
 
     av_dlog(ts->stream, "PAT:\n");
-    hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
+    hex_dump_debug(ts->stream, section, section_len);
 
     p_end = section + section_len - 4;
     p = section;
@@ -1562,7 +1562,7 @@ static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
     char *name, *provider_name;
 
     av_dlog(ts->stream, "SDT:\n");
-    hex_dump_debug(ts->stream, (uint8_t *)section, section_len);
+    hex_dump_debug(ts->stream, section, section_len);
 
     p_end = section + section_len - 4;
     p = section;