Merge pull request #6830 from ameerj/nvdec-unimpld-codec

nvdec: Better logging for unimplemented codecs
This commit is contained in:
bunnei 2021-08-07 12:37:39 -07:00 committed by GitHub
commit bd0e1d3a25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}
}