---
 ffplay.c                |    4 ----
 libavcodec/motion_est.c |    2 --
 libavformat/mpeg.c      |    3 ---
 3 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/ffplay.c b/ffplay.c
index e036bbd..1a93070 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1065,10 +1065,6 @@ static double compute_target_time(double 
frame_current_pts, VideoState *is)
         }
     }
     is->frame_timer += delay;
-#if defined(DEBUG_SYNC)
-    printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
-            delay, actual_delay, frame_current_pts, -diff);
-#endif
 
     return is->frame_timer;
 }
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c
index 4d4377b..5f10456 100644
--- a/libavcodec/motion_est.c
+++ b/libavcodec/motion_est.c
@@ -1119,8 +1119,6 @@ void ff_estimate_p_frame_motion(MpegEncContext * s,
 //    pic->mb_cmp_score[s->mb_stride * mb_y + mb_x] = dmin;
     c->mc_mb_var_sum_temp += (vard+128)>>8;
 
-    av_dlog(s, "varc=%4d avg_var=%4d (sum=%4d) vard=%4d mx=%2d my=%2d\n",
-            varc, s->avg_mb_var, sum, vard, mx - xx, my - yy);
     if(mb_type){
         int p_score= FFMIN(vard, varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*100);
         int i_score= varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*20;
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 9850661..7ad5176 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -583,9 +583,6 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int 
stream_index,
     int64_t pos, pts, dts;
 
     pos = *ppos;
-#ifdef DEBUG_SEEK
-    printf("read_dts: pos=0x%"PRIx64" next=%d -> ", pos, find_next);
-#endif
     if (avio_seek(s->pb, pos, SEEK_SET) < 0)
         return AV_NOPTS_VALUE;
 
-- 
1.7.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to