Here is a list of functions deprecated in 7.1, with recommended substitutes. You should notice that the non in-place functions are typically recommended as substitutes for their in-place counterparts.
Here is a forum discussion where in an intel engineer affirms that non in-place functions can be used in place of their in-place counterparts, by setting src==dst.
There is a caveat, though. If you're using IPP 7.0, the compiler will issue deprecation warnings. However, for at least some of those functions, using the src==dst method produces corrupt output. This doesn't appear to be fully implemented until 7.1. I've experienced this issue personally with filter functions, and there's a question in the discussion about it, though Intel never responded to it.
It's frustrating that Intel hasn't been more forthcoming about clearly documenting this change. The resulting bugs are very difficult to diagnose, and could easily be overlooked entirely. The only way to catch them, is by comparing the output of both functions, and few people would bother to do that.