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
Родитель 9b3563ea90
Коммит 2ca35898de
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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.