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
bool isContextExist(u32 ctxAddr){
for (auto it : pmp_ContextList){
if (it == ctxAddr){
for (std::list<u32>::iterator it = pmp_ContextList.begin(); it != pmp_ContextList.end(); it++){
if (*it == ctxAddr){
return true;
}
}