aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-02-23 15:50:28 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-02-23 18:01:08 +0100
commit1e9aa7907ed45c2587c551c0cf9150cc9d0e59b2 (patch)
treebc026e48bcdf85889575db43c214bc206d4740a6
parent23ef5996a589cc4968d2e5508a445bcfda61a830 (diff)
downloadffmpeg-1e9aa7907ed45c2587c551c0cf9150cc9d0e59b2.tar.gz
postproc: fix unaligned access
Based on 59074310 by Andreas Cadhalpun. Fixes ticket #5259. (cherry picked from commit 2aa21eec1adcb3737be59f0eab7081c5a790faa9) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libpostproc/postprocess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 3b86f93980..1dc719cf93 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -973,7 +973,7 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
int i;
const int count= FFMAX(mbHeight * absQPStride, mbWidth);
for(i=0; i<(count>>2); i++){
- ((uint32_t*)c->stdQPTable)[i] = (((const uint32_t*)QP_store)[i]>>1) & 0x7F7F7F7F;
+ AV_WN32(c->stdQPTable + (i<<2), AV_RN32(QP_store + (i<<2)) >> 1 & 0x7F7F7F7F);
}
for(i<<=2; i<count; i++){
c->stdQPTable[i] = QP_store[i]>>1;