]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pthread.c
Merge commit '564b7e0c0095768cd20001b28154d69462be54e7'
[ffmpeg] / libavcodec / pthread.c
index 2433880323a94b1392e51fc5b7a4d181b30e8c29..259dab0d8c309134d71be058d7771d9397adead8 100644 (file)
@@ -790,7 +790,6 @@ static int frame_thread_init(AVCodecContext *avctx)
         int nb_cpus = av_cpu_count();
         if ((avctx->debug & (FF_DEBUG_VIS_QP | FF_DEBUG_VIS_MB_TYPE)) || avctx->debug_mv)
             nb_cpus = 1;
-        av_log(avctx, AV_LOG_DEBUG, "detected %d logical cores\n", nb_cpus);
         // use number of cores + 1 as thread count if there is more than one
         if (nb_cpus > 1)
             thread_count = avctx->thread_count = FFMIN(nb_cpus + 1, MAX_AUTO_THREADS);