summaryrefslogtreecommitdiff
path: root/vp8/common/postproc.h
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2016-07-15 08:27:34 -0700
committerJim Bankoski <jimbankoski@google.com>2016-07-15 08:27:34 -0700
commit0dc69c70f70bb320101064fa0dc0643e3d266f57 (patch)
tree0e809b8bb0bbdb227fd2a4cad3954e3730f25590 /vp8/common/postproc.h
parent7eec1f31b50e05f6fe06bccda8db08d75a6ff0f2 (diff)
downloadlibvpx-0dc69c70f70bb320101064fa0dc0643e3d266f57.tar
libvpx-0dc69c70f70bb320101064fa0dc0643e3d266f57.tar.gz
libvpx-0dc69c70f70bb320101064fa0dc0643e3d266f57.tar.bz2
libvpx-0dc69c70f70bb320101064fa0dc0643e3d266f57.zip
postproc : fix function parameters for noise functions.
Change-Id: I582b6307f28bfc987dcf8910379a52c6f679173c
Diffstat (limited to 'vp8/common/postproc.h')
-rw-r--r--vp8/common/postproc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/vp8/common/postproc.h b/vp8/common/postproc.h
index 0fa12a7c6..77c4a047d 100644
--- a/vp8/common/postproc.h
+++ b/vp8/common/postproc.h
@@ -17,12 +17,10 @@ struct postproc_state
{
int last_q;
int last_noise;
- char noise[3072];
+ int8_t noise[3072];
int last_base_qindex;
int last_frame_valid;
- DECLARE_ALIGNED(16, char, blackclamp[16]);
- DECLARE_ALIGNED(16, char, whiteclamp[16]);
- DECLARE_ALIGNED(16, char, bothclamp[16]);
+ int clamp;
};
#include "onyxc_int.h"
#include "ppflags.h"