Skip to content
Snippets Groups Projects
Commit 234d42f5 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

postprocess: fix another void returning void function.


lets hope this makes suncc happy finally ...

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent ee1748ab
No related branches found
No related tags found
No related merge requests found
...@@ -624,8 +624,10 @@ static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[] ...@@ -624,8 +624,10 @@ static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[]
PPMode *ppMode= (PPMode *)vm; PPMode *ppMode= (PPMode *)vm;
c->ppMode= *ppMode; //FIXME c->ppMode= *ppMode; //FIXME
if(ppMode->lumMode & BITEXACT) if(ppMode->lumMode & BITEXACT) {
return postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
return;
}
// Using ifs here as they are faster than function pointers although the // Using ifs here as they are faster than function pointers although the
// difference would not be measurable here but it is much better because // difference would not be measurable here but it is much better because
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment