# HG changeset patch # User lorenm # Date 1158861605 0 # Node ID aedf5cf3de93382c335fb773ebaef02c20b8d7c4 # Parent 6199da3bf29ebfc6a1eaec42d50f534045069740 remove a division from STOP_TIMER diff -r 6199da3bf29e -r aedf5cf3de93 common.h --- a/common.h Thu Sep 21 17:48:45 2006 +0000 +++ b/common.h Thu Sep 21 18:00:05 2006 +0000 @@ -386,7 +386,7 @@ tcount++;\ }else\ tskip_count++;\ - if(256*256*256*64%(tcount+tskip_count)==0){\ + if(((tcount+tskip_count)&(tcount+tskip_count-1))==0){\ av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\ }\ }