summaryrefslogtreecommitdiff
path: root/libavformat/h263dec.c
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 /libavformat/h263dec.c
parent14d3e7ad11addf0f8415cafad73f6e040a028e93 (diff)
avformat: Remove non-compiling and/or silly commented-out printf/av_log statements
Diffstat (limited to 'libavformat/h263dec.c')
-rw-r--r--libavformat/h263dec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/h263dec.c b/libavformat/h263dec.c
index 9f50faabc4..101ef51748 100644
--- a/libavformat/h263dec.c
+++ b/libavformat/h263dec.c
@@ -55,8 +55,6 @@ static int h263_probe(AVProbeData *p)
last_gn= gn;
}
}
-//av_log(NULL, AV_LOG_ERROR, "h263_probe: psc:%d invalid:%d res_change:%d\n", valid_psc, invalid_psc, res_change);
-//h263_probe: psc:3 invalid:0 res_change:0 (1588/recent_ffmpeg_parses_mpg_incorrectly.mpg)
if(valid_psc > 2*invalid_psc + 2*res_change + 3){
return 50;
}else if(valid_psc > 2*invalid_psc)