mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/qsvenc_hevc: Attempt to fix error: too few arguments to function ff_hevc_extract_rbsp
Found-by: Ivan Uskov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f21b4472ef
commit
7ee935ba5c
|
@ -68,7 +68,7 @@ static int generate_fake_vps(QSVEncContext *q, AVCodecContext *avctx)
|
|||
}
|
||||
|
||||
/* parse the SPS */
|
||||
ret = ff_hevc_extract_rbsp(avctx->extradata + 4, avctx->extradata_size - 4, &sps_nal);
|
||||
ret = ff_hevc_extract_rbsp(NULL, avctx->extradata + 4, avctx->extradata_size - 4, &sps_nal);
|
||||
if (ret < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Error unescaping the SPS buffer\n");
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue