audio_core: hle: mf: avoid name conflicts

This commit is contained in:
liushuyu
2019-01-28 23:36:24 -07:00
committed by B3N30
parent 452ac7b874
commit 633f02b9b2
3 changed files with 3 additions and 3 deletions

View File

@ -215,7 +215,7 @@ std::optional<BinaryResponse> WMFDecoder::Impl::Decode(const BinaryRequest& requ
// if the decode issues are caused by MFT not accepting new samples, try again
// NOTICE: you are required to check the output even if you already knew/guessed
// MFT didn't accept the input sample
if (input_status == TRY_AGAIN) {
if (input_status == NOT_ACCEPTED) {
// try again
continue;
}