Use colorspace helper with VAAPI direct rendering

This commit is contained in:
Cameron Gutman 2022-10-14 19:23:51 -05:00
parent 8a224fbae4
commit 84fc5f3008

View file

@ -632,19 +632,15 @@ VAAPIRenderer::renderFrame(AVFrame* frame)
// NB: Not all VAAPI drivers respect these flags. Many drivers // NB: Not all VAAPI drivers respect these flags. Many drivers
// just ignore them and do the color conversion as Rec 601. // just ignore them and do the color conversion as Rec 601.
switch (frame->colorspace) { switch (getFrameColorspace(frame)) {
case AVCOL_SPC_BT709: case COLORSPACE_REC_709:
flags |= VA_SRC_BT709; flags |= VA_SRC_BT709;
break; break;
case AVCOL_SPC_BT470BG: case COLORSPACE_REC_601:
case AVCOL_SPC_SMPTE170M:
flags |= VA_SRC_BT601; flags |= VA_SRC_BT601;
break; break;
case AVCOL_SPC_SMPTE240M:
flags |= VA_SRC_SMPTE_240;
break;
default: default:
// Unknown colorspace // Unsupported colorspace
SDL_assert(false); SDL_assert(false);
break; break;
} }