summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-09-18 21:11:37 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-09-18 21:11:37 +0200
commit5a9ca68e15fe01a0b54a6b7808a42ef746dd7d75 (patch)
tree2d7e877fdef53951aea6a55a4e6ed4f5f5c1d506 /libpostproc/postprocess.c
parent859d7d4640c3cccde4803a4fe6878efd50e57bc0 (diff)
downloadffmpeg-5a9ca68e15fe01a0b54a6b7808a42ef746dd7d75.tar.gz
postproc/postprocess: remove redundant casts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r--libpostproc/postprocess.c4
1 files changed, 2 insertions, 2 deletions
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);