diff options
author | Michael Niedermayer | 2014-09-18 21:11:37 +0200 |
---|---|---|
committer | Michael Niedermayer | 2014-09-18 21:11:37 +0200 |
commit | 5a9ca68e15fe01a0b54a6b7808a42ef746dd7d75 (patch) | |
tree | 2d7e877fdef53951aea6a55a4e6ed4f5f5c1d506 /libpostproc | |
parent | 859d7d4640c3cccde4803a4fe6878efd50e57bc0 (diff) |
postproc/postprocess: remove redundant casts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 4 |
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); |