summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorFritz Koenig <frkoenig@google.com>2010-11-04 16:03:36 -0700
committerFritz Koenig <frkoenig@google.com>2010-11-10 14:14:46 -0800
commit647df00f3058838cb37a1c257ab0d95c185084a9 (patch)
tree863e11947bb748ad0b452aa555a4d3a3fb19f0e2 /vp8/encoder/onyx_if.c
parent6adbe09058f05a42ff1360ab55e3916f45e39a0c (diff)
downloadlibvpx-647df00f3058838cb37a1c257ab0d95c185084a9.tar
libvpx-647df00f3058838cb37a1c257ab0d95c185084a9.tar.gz
libvpx-647df00f3058838cb37a1c257ab0d95c185084a9.tar.bz2
libvpx-647df00f3058838cb37a1c257ab0d95c185084a9.zip
postproc : Re-work posproc calling to allow more flags.
Debugging in postproc needs more flags to allow for specific block types to be turned on or off in the visualizations. Must be enabled with --enable-postproc-visualizer during configuration time. Change-Id: Ia74f357ddc3ad4fb8082afd3a64f62384e4fcb2d
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 93e13d139..ba7bb104b 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -5224,7 +5224,7 @@ int vp8_get_compressed_data(VP8_PTR ptr, unsigned int *frame_flags, unsigned lon
return 0;
}
-int vp8_get_preview_raw_frame(VP8_PTR comp, YV12_BUFFER_CONFIG *dest, int deblock_level, int noise_level, int flags)
+int vp8_get_preview_raw_frame(VP8_PTR comp, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t *flags)
{
VP8_COMP *cpi = (VP8_COMP *) comp;
@@ -5234,7 +5234,7 @@ int vp8_get_preview_raw_frame(VP8_PTR comp, YV12_BUFFER_CONFIG *dest, int debloc
{
int ret;
#if CONFIG_POSTPROC
- ret = vp8_post_proc_frame(&cpi->common, dest, deblock_level, noise_level, flags);
+ ret = vp8_post_proc_frame(&cpi->common, dest, flags);
#else
if (cpi->common.frame_to_show)