diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-01 22:08:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-01 22:08:44 +0200 |
commit | 58677d73ed43020ea0840e633588e344396ee256 (patch) | |
tree | ee96724ecd357d71717e99263c4104ad380b79bc /libavcodec/libx264.c | |
parent | acc3c380cb010451e8e336b622e7ae446709d5c2 (diff) | |
parent | 6248694861f0c414571fadba447a0c1cab95284e (diff) | |
download | ffmpeg-58677d73ed43020ea0840e633588e344396ee256.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
avconv: fix some bugs introduced in 630902a1e1336e7ee0cf3dcbcb6eb07af8edf660
libmp3lame: fix typo
AVOptions: drop av_ prefix from static av_get_number().
libx264: use X264_THREADS_AUTO constant instead of 0.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index ca65e9f1e2..d9a99f3d85 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -548,7 +548,7 @@ static const AVClass class = { static const AVCodecDefault x264_defaults[] = { { "b", "0" }, - { "threads", "0" }, + { "threads", AV_STRINGIFY(X264_THREADS_AUTO) }, { NULL }, }; |