replay: no HW decoder, fix UV stride

old-commit-hash: b701ea33ce
taco
Willem Melching 3 years ago
parent 8cd45d02c0
commit 8b603a9d5f
  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