[FFmpeg-cvslog] libx264: Allow overriding the sliced threads option
Martin Storsjö
git at videolan.org
Wed Mar 7 03:37:18 CET 2012
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Mon Mar 5 21:54:17 2012 +0200| [338978a7c17d303672bcf5e035e54da362274a18] | committer: Martin Storsjö
libx264: Allow overriding the sliced threads option
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=338978a7c17d303672bcf5e035e54da362274a18
---
libavcodec/libx264.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 3934627..abce6a8 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -379,6 +379,8 @@ static av_cold int X264_init(AVCodecContext *avctx)
x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
x4->params.i_threads = avctx->thread_count;
+ if (avctx->thread_type)
+ x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
@@ -536,6 +538,7 @@ static const AVCodecDefault x264_defaults[] = {
{ "coder", "-1" },
{ "cmp", "-1" },
{ "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
+ { "thread_type", "0" },
{ NULL },
};
More information about the ffmpeg-cvslog
mailing list