From 5d06f15235c2fa1b6ed2c5af3bc0e3750df4291c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 31 Aug 2011 14:04:02 +0200 Subject: [PATCH] libx264: set default thread count to 0 (auto) --- libavcodec/libx264.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 8614ec5..bff29d8 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -476,6 +476,7 @@ static const AVClass class = { static const AVCodecDefault x264_defaults[] = { { "b", "0" }, + { "threads", "0" }, { NULL }, }; -- 2.7.4