replay: no HW decoder, fix UV stride

This commit is contained in:
Willem Melching
2022-06-17 16:27:05 +02:00
parent 7c826b4fa1
commit b701ea33ce
+1 -1
View File
@@ -242,7 +242,7 @@ bool FrameReader::copyBuffers(AVFrame *f, uint8_t *yuv) {
f->data[1], f->linesize[1],
f->data[2], f->linesize[2],
y, width,
uv, width / 2,
uv, width,
width, height);
}
return true;