mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-15 05:42:28 +00:00
Fix colorspace conversion with SDL as frontend renderer
This commit is contained in:
parent
801adb6af7
commit
6230a99360
1 changed files with 5 additions and 0 deletions
|
@ -270,6 +270,11 @@ void SdlRenderer::renderFrame(AVFrame* frame)
|
|||
goto Exit;
|
||||
}
|
||||
|
||||
// av_hwframe_transfer_data() can nuke frame metadata,
|
||||
// so anything other than width, height, and format must
|
||||
// be set *after* calling av_hwframe_transfer_data().
|
||||
swFrame->colorspace = frame->colorspace;
|
||||
|
||||
frame = swFrame;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue