[FFmpeg-devel] [PATCH 7/7] doc/encoders: Fix libkvazaar documentation
Arttu Ylä-Outinen
arttu.yla-outinen at tut.fi
Mon Sep 28 12:13:25 CEST 2015
Removes the -threads option from libkvazaar documentation since it does
not work with libkvazaar.
Signed-off-by: Arttu Ylä-Outinen <arttu.yla-outinen at tut.fi>
---
doc/encoders.texi | 3 ---
libavcodec/libkvazaar.c | 1 -
2 files changed, 4 deletions(-)
diff --git a/doc/encoders.texi b/doc/encoders.texi
index 3550bcc..bf364fd 100644
--- a/doc/encoders.texi
+++ b/doc/encoders.texi
@@ -2397,9 +2397,6 @@ configuration. You need to explicitly configure the build with
@item b
Set target video bitrate in bit/s and enable rate control.
- at item threads
-Set number of encoding threads.
-
@item kvazaar-params
Set kvazaar parameters as a list of @var{name}=@var{value} pairs separated
by commas (,). See kvazaar documentation for a list of options.
diff --git a/libavcodec/libkvazaar.c b/libavcodec/libkvazaar.c
index 0cf890f..3000f6a 100644
--- a/libavcodec/libkvazaar.c
+++ b/libavcodec/libkvazaar.c
@@ -74,7 +74,6 @@ static av_cold int libkvazaar_init(AVCodecContext *avctx)
cfg->height = avctx->height;
cfg->framerate =
avctx->time_base.den / (double)(avctx->time_base.num * avctx->ticks_per_frame);
- cfg->threads = avctx->thread_count;
cfg->target_bitrate = avctx->bit_rate;
cfg->vui.sar_width = avctx->sample_aspect_ratio.num;
cfg->vui.sar_height = avctx->sample_aspect_ratio.den;
--
1.7.9.5
More information about the ffmpeg-devel
mailing list