avcodec/videotoolboxenc: pass error code through

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
Zhao Zhili 2023-01-03 18:18:31 +08:00
parent 5ab429d8df
commit 0ef85a5471

View File

@ -2156,7 +2156,7 @@ static int get_cv_pixel_info(
status = get_cv_pixel_format(avctx, av_format, av_color_range, color, &range_guessed);
if (status)
return AVERROR(EINVAL);
return status;
if (range_guessed) {
if (!vtctx->warned_color_range) {
@ -2338,7 +2338,7 @@ static int create_cv_pixel_buffer(AVCodecContext *avctx,
status
);
return AVERROR_EXTERNAL;
return status;
}
pix_buf_pool = VTCompressionSessionGetPixelBufferPool(vtctx->session);