[FFmpeg-devel] [PATCH] vaapi_encode: fix slices number check.

mypopy at gmail.com mypopy at gmail.com
Mon Nov 12 04:37:43 EET 2018


On Tue, Oct 30, 2018 at 1:25 PM Jun Zhao <mypopydev at gmail.com> wrote:
>
> fix slice number check logic.
>
> Signed-off-by: Jun Zhao <mypopydev at gmail.com>
> ---
>  libavcodec/vaapi_encode.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/libavcodec/vaapi_encode.c b/libavcodec/vaapi_encode.c
> index 2fe8501..bf8f37b 100644
> --- a/libavcodec/vaapi_encode.c
> +++ b/libavcodec/vaapi_encode.c
> @@ -1571,7 +1571,7 @@ static av_cold int vaapi_encode_init_slice_structure(AVCodecContext *avctx)
>          return AVERROR(EINVAL);
>      }
>
> -    if (ctx->nb_slices > avctx->slices) {
> +    if (ctx->nb_slices < avctx->slices) {
>          av_log(avctx, AV_LOG_WARNING, "Slice count rounded up to "
>                 "%d (from %d) due to driver constraints on slice "
>                 "structure.\n", ctx->nb_slices, avctx->slices);
> --
> 1.7.1
>
Ping ?


More information about the ffmpeg-devel mailing list