Module: libav Branch: master Commit: 1440037411507f6737df97b7262649874cee8ac2
Author: Anton Khirnov <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Wed Aug 31 19:26:01 2011 +0200 libx264: use X264_THREADS_AUTO constant instead of 0. --- libavcodec/libx264.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 }, }; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
