There are tons of possible answers to this (based on resolution, color depth, etc.).
But here's what I'd do:
At first, scan the whole image for faces. Once you've found one, try to find it only in the vicinity in the following frames (define an area around with an appropriate border where it could have moved to). Also use a filter (e.g. alpha/beta filter) to try to predict the face's position/movement). If a face is lost for more than x frames (or in general, every y frames) do a new complete scan to catch new and lost faces. In general I wouldn't advice on scanning the whole frame every time. The more pixels you're able to skip ("it can't be there anyway") - even if it' just the top or border space where you've never seen a face yet - will net you some performance gain.