rollback something changes for Symbian compiling issue

This commit is contained in:
kaienfr 2014-04-08 04:17:32 +02:00
parent a576420547
commit d39006c748

View file

@ -733,8 +733,8 @@ static void SaveFrame(AVFrame *pFrame, int width, int height)
// check the existence of pmp media context // check the existence of pmp media context
bool isContextExist(u32 ctxAddr){ bool isContextExist(u32 ctxAddr){
for (auto it : pmp_ContextList){ for (std::list<u32>::iterator it = pmp_ContextList.begin(); it != pmp_ContextList.end(); it++){
if (it == ctxAddr){ if (*it == ctxAddr){
return true; return true;
} }
} }