1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-21 08:45:06 +02:00

libx264: use X264_THREADS_AUTO constant instead of 0.

This commit is contained in:
Anton Khirnov 2011-08-31 19:26:01 +02:00
parent 5d06f15235
commit 1440037411

View File

@ -476,7 +476,7 @@ static const AVClass class = {
static const AVCodecDefault x264_defaults[] = {
{ "b", "0" },
{ "threads", "0" },
{ "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
{ NULL },
};