replay: no HW decoder, fix UV stride

pull/24899/head
Willem Melching 3 years ago
parent 7c826b4fa1
commit b701ea33ce
  1. 2
      selfdrive/ui/replay/framereader.cc

@ -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;

Loading…
Cancel
Save