Commit 92fdc80c authored by Luca Barbato's avatar Luca Barbato

nvenc: Fix NV12 input

parent 072756cd
......@@ -881,9 +881,9 @@ static int nvenc_copy_frame(NV_ENC_LOCK_INPUT_BUFFER *in, const AVFrame *frame)
frame->width, frame->height);
buf += off;
av_image_copy_plane(buf, in->pitch >> 1,
av_image_copy_plane(buf, in->pitch,
frame->data[1], frame->linesize[1],
frame->width >> 1, frame->height >> 1);
frame->width, frame->height >> 1);
break;
case AV_PIX_FMT_YUV444P:
av_image_copy_plane(buf, in->pitch,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment