summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-29 19:05:40 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-29 20:00:53 +0200
commit2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3 (patch)
tree975487aadba34a6b14eea20ca282c60847fd7222 /libavformat
parent09cbf60f8eec65cc53c5931234476a9956cc27fd (diff)
Remove some disabled printf debug cruft.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/ffmdec.c3
-rw-r--r--libavformat/mpegts.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c
index 6cd2b51392..8a6226a104 100644
--- a/libavformat/ffmdec.c
+++ b/libavformat/ffmdec.c
@@ -417,9 +417,6 @@ static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
if (ffm->header[1] & FLAG_DTS)
if (ffm_read_data(s, ffm->header+16, 4, 1) != 4)
return -1;
-#if 0
- av_hexdump_log(s, AV_LOG_DEBUG, ffm->header, FRAME_HEADER_SIZE);
-#endif
ffm->read_state = READ_DATA;
/* fall thru */
case READ_DATA:
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 2ff6e55c57..3130eb9ff5 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -662,9 +662,6 @@ static int mpegts_push_data(MpegTSFilter *filter,
if (pes->data_index == PES_START_SIZE) {
/* we got all the PES or section header. We can now
decide */
-#if 0
- av_hex_dump_log(pes->stream, AV_LOG_DEBUG, pes->header, pes->data_index);
-#endif
if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
pes->header[2] == 0x01) {
/* it must be an mpeg2 PES stream */