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…
Add table
Add a link
Reference in a new issue