From: Michael Niedermayer Date: Thu, 18 Sep 2014 19:11:37 +0000 (+0200) Subject: postproc/postprocess: remove redundant casts X-Git-Tag: n2.5~1439 X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=5a9ca68e15fe01a0b54a6b7808a42ef746dd7d75 postproc/postprocess: remove redundant casts Signed-off-by: Michael Niedermayer --- diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 214a654a04..b6da294c85 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -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);