summaryrefslogtreecommitdiff
path: root/vp8/common/generic
diff options
context:
space:
mode:
authorFritz Koenig <frkoenig@google.com>2010-10-27 12:50:16 -0700
committerFritz Koenig <frkoenig@google.com>2010-10-27 13:20:03 -0700
commita097e189641fcbbecc92661e2c87019845dc7b00 (patch)
tree4cd7df3df993cb43d088e534ea2ff9ad51770e5e /vp8/common/generic
parent71ecb5d7d905d1f1771b6c5e130e873dcf458b73 (diff)
downloadlibvpx-a097e189641fcbbecc92661e2c87019845dc7b00.tar
libvpx-a097e189641fcbbecc92661e2c87019845dc7b00.tar.gz
libvpx-a097e189641fcbbecc92661e2c87019845dc7b00.tar.bz2
libvpx-a097e189641fcbbecc92661e2c87019845dc7b00.zip
postproc: Tweaks to line drawing and blending.
Turned down the blending level to make colored blocks obscure the video less. Not blending the entire block to give distinction to macro block edges. Added configuration so that macro block blending function can be optimized. Change to constrain line as to when dx and dy are computed. Now draw two lines to form an arrow. Change-Id: Id3ef0fdeeab2949a6664b2c63e2a3e1a89503f6c
Diffstat (limited to 'vp8/common/generic')
-rw-r--r--vp8/common/generic/systemdependent.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vp8/common/generic/systemdependent.c b/vp8/common/generic/systemdependent.c
index 0c9b77e76..c624242a5 100644
--- a/vp8/common/generic/systemdependent.c
+++ b/vp8/common/generic/systemdependent.c
@@ -69,6 +69,7 @@ void vp8_machine_specific_config(VP8_COMMON *ctx)
rtcd->postproc.across = vp8_mbpost_proc_across_ip_c;
rtcd->postproc.downacross = vp8_post_proc_down_and_across_c;
rtcd->postproc.addnoise = vp8_plane_add_noise_c;
+ rtcd->postproc.blend_mb = vp8_blend_mb_c;
#endif
#endif