vaapi_encode_h265: Add missing error return

Fixes CID #1439657.
pull/299/head
Mark Thompson 7 years ago
parent 1215fbad96
commit 74b4134d2f
  1. 1
      libavcodec/vaapi_encode_h265.c

@ -293,6 +293,7 @@ static int vaapi_encode_h265_init_sequence_params(AVCodecContext *avctx)
} else { } else {
av_log(avctx, AV_LOG_ERROR, "Chroma format of input pixel format " av_log(avctx, AV_LOG_ERROR, "Chroma format of input pixel format "
"%s is not supported.\n", desc->name); "%s is not supported.\n", desc->name);
return AVERROR(EINVAL);
} }
} }
bit_depth = desc->comp[0].depth; bit_depth = desc->comp[0].depth;

Loading…
Cancel
Save