Bug 1098195 - Return false when failing to get output format. r=edwin

This commit is contained in:
Alfredo Yang 2014-11-13 01:26:00 -05:00
parent 61ea0b607b
commit 6bbfb4efe8

View File

@ -294,8 +294,10 @@ GonkVideoDecoderManager::SetVideoFormat()
ALOG("It is not a valid region");
return false;
}
return true;
}
return true;
ALOG("Fail to get output format");
return false;
}
// Blocks until decoded sample is produced by the deoder.