From: Anton Khirnov Date: Wed, 31 Aug 2011 17:26:01 +0000 (+0200) Subject: libx264: use X264_THREADS_AUTO constant instead of 0. X-Git-Tag: v0.8b1~1638 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1440037411507f6737df97b7262649874cee8ac2;p=platform%2Fupstream%2Flibav.git libx264: use X264_THREADS_AUTO constant instead of 0. --- diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index bff29d8..93ae88d 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -476,7 +476,7 @@ static const AVClass class = { static const AVCodecDefault x264_defaults[] = { { "b", "0" }, - { "threads", "0" }, + { "threads", AV_STRINGIFY(X264_THREADS_AUTO) }, { NULL }, };