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

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