nvdec: Better logging for unimplemented codecs

This commit is contained in:
ameerj 2021-08-07 01:08:33 -04:00
parent f183668a87
commit 928b64d2ce

View file

@ -39,7 +39,7 @@ void Nvdec::Execute() {
codec->Decode();
break;
default:
UNIMPLEMENTED_MSG("Unknown codec {}", static_cast<u32>(codec->GetCurrentCodec()));
UNIMPLEMENTED_MSG("Codec {}", codec->GetCurrentCodecName());
break;
}
}