summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_postproc.c
diff options
context:
space:
mode:
authorAℓex Converse <aconverse@google.com>2015-08-11 01:18:39 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-08-11 01:18:39 +0000
commitb152472ba7164d6fbce6e2e7df2fcd0d9c57e665 (patch)
tree3c5aa1f6c212773e2d3d13c8ba90ee36d25e8253 /vp9/common/vp9_postproc.c
parent1d723572b9de9a26151a877c3f28a4fa83c5e7d9 (diff)
parenta8a08ce57ed2fa121a296431c126a5b496be193f (diff)
downloadlibvpx-b152472ba7164d6fbce6e2e7df2fcd0d9c57e665.tar
libvpx-b152472ba7164d6fbce6e2e7df2fcd0d9c57e665.tar.gz
libvpx-b152472ba7164d6fbce6e2e7df2fcd0d9c57e665.tar.bz2
libvpx-b152472ba7164d6fbce6e2e7df2fcd0d9c57e665.zip
Merge "Move vp9_systemdependent.h to vpx_ports bitops.h and system_state.h"
Diffstat (limited to 'vp9/common/vp9_postproc.c')
-rw-r--r--vp9/common/vp9_postproc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/common/vp9_postproc.c b/vp9/common/vp9_postproc.c
index 53b3b700c..1843bb95c 100644
--- a/vp9/common/vp9_postproc.c
+++ b/vp9/common/vp9_postproc.c
@@ -17,12 +17,12 @@
#include "./vp9_rtcd.h"
#include "vpx_ports/mem.h"
+#include "vpx_ports/system_state.h"
#include "vpx_scale/vpx_scale.h"
#include "vpx_scale/yv12config.h"
#include "vp9/common/vp9_onyxc_int.h"
#include "vp9/common/vp9_postproc.h"
-#include "vp9/common/vp9_systemdependent.h"
#include "vp9/common/vp9_textblit.h"
#if CONFIG_VP9_POSTPROC
@@ -544,7 +544,7 @@ static void fillrd(struct postproc_state *state, int q, int a) {
double sigma;
int ai = a, qi = q, i;
- vp9_clear_system_state();
+ vpx_clear_system_state();
sigma = ai + .5 + .6 * (63 - qi) / 63.0;
@@ -638,7 +638,7 @@ int vp9_post_proc_frame(struct VP9Common *cm,
return 0;
}
- vp9_clear_system_state();
+ vpx_clear_system_state();
// Alloc memory for prev_mip in the first frame.
if (cm->current_video_frame == 1) {