summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-21 12:27:40 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-01 10:24:28 +0200
commit11d4e92ed929f092c6ecc8775b0ba340ccd7179d (patch)
treef243ccffef80d2e60ebae225ac4964adf02eecab /tools
parent14d3e7ad11addf0f8415cafad73f6e040a028e93 (diff)
avformat: Remove non-compiling and/or silly commented-out printf/av_log statements
Diffstat (limited to 'tools')
-rw-r--r--tools/pktdumper.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/pktdumper.c b/tools/pktdumper.c
index 087ac5b2dc..98b9327ef4 100644
--- a/tools/pktdumper.c
+++ b/tools/pktdumper.c
@@ -113,7 +113,6 @@ int main(int argc, char **argv)
(pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
printf(PKTFILESUFF "\n", pktnum, pkt.stream_index, pkt.pts, pkt.size,
(pkt.flags & AV_PKT_FLAG_KEY) ? 'K' : '_');
- //printf("open(\"%s\")\n", pktfilename);
if (!nowrite) {
fd = open(pktfilename, O_WRONLY | O_CREAT, 0644);
err = write(fd, pkt.data, pkt.size);