Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-23 02:16:07 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-23 02:16:07 +0300
commitfc90d1502a54251b86cc6d25d9df4394445ecc21 (patch)
tree481589ffd5da3ed623f76caa3a9f25265df8a913 /libpostproc/postprocess_template.c
parent93f4538363069b721c24417f3d38575274394845 (diff)
bpostproc/postprocess_template: drop avoidable #ifdef
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc/postprocess_template.c')
-rw-r--r--libpostproc/postprocess_template.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c
index 9049c814b3..680549e775 100644
--- a/libpostproc/postprocess_template.c
+++ b/libpostproc/postprocess_template.c
@@ -3481,9 +3481,8 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[
int endx = FFMIN(width, x+32);
for(; x < endx; x+=BLOCK_SIZE){
const int stride= dstStride;
-#if TEMPLATE_PP_MMX
- uint8_t *tmpXchg;
-#endif
+ av_unused uint8_t *tmpXchg;
+
if(isColor){
QP= QPptr[x>>qpHShift];
c.nonBQP= nonBQPptr[x>>qpHShift];