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

postproc/postprocess: remove redundant casts

parent 859d7d46
No related branches found
No related tags found
No related merge requests found
......@@ -953,8 +953,8 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
{
int mbWidth = (width+15)>>4;
int mbHeight= (height+15)>>4;
PPMode *mode = (PPMode*)vm;
PPContext *c = (PPContext*)vc;
PPMode *mode = vm;
PPContext *c = vc;
int minStride= FFMAX(FFABS(srcStride[0]), FFABS(dstStride[0]));
int absQPStride = FFABS(QPStride);
......
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