projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
859d7d4
)
postproc/postprocess: remove redundant casts
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 18 Sep 2014 19:11:37 +0000
(21:11 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 18 Sep 2014 19:11:37 +0000
(21:11 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libpostproc/postprocess.c
patch
|
blob
|
history
diff --git
a/libpostproc/postprocess.c
b/libpostproc/postprocess.c
index
214a654
..
b6da294
100644
(file)
--- 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);