summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorAttila Nagy <attilanagy@google.com>2011-06-10 14:10:21 +0300
committerAttila Nagy <attilanagy@google.com>2011-07-08 09:31:41 +0300
commit622958449b9388cca0f4a4e287b3e94422e4a573 (patch)
tree7086118472d23cf5ddf7e1292fff36be19321a7b /vp8/encoder/onyx_if.c
parent973a9c075d2db817e489f5ba050fc49963bf2c71 (diff)
downloadlibvpx-622958449b9388cca0f4a4e287b3e94422e4a573.tar
libvpx-622958449b9388cca0f4a4e287b3e94422e4a573.tar.gz
libvpx-622958449b9388cca0f4a4e287b3e94422e4a573.tar.bz2
libvpx-622958449b9388cca0f4a4e287b3e94422e4a573.zip
New loop filter interface
Separate simple filter with reduced no. of parameters. MB filter level picking based on precalculated table. Level table updated for each frame. Inside and edge limits precalculated and updated just when sharpness changes. HEV threshhold is constant. ARM targets use scalars and others vectors. Change works only with --target=generic-gnu All other targets have to be updated! Change-Id: I6b73aca6b525075b20129a371699b2561bd4d51c
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 73b4c7dcd..d2b0bf36a 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2105,7 +2105,7 @@ VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf)
//when needed. This will avoid unnecessary calls of vp8cx_init_quantizer() for every frame.
vp8cx_init_quantizer(cpi);
{
- vp8_init_loop_filter(cm);
+ vp8_loop_filter_init(cm);
cm->last_frame_type = KEY_FRAME;
cm->last_filter_type = cm->filter_type;
cm->last_sharpness_level = cm->sharpness_level;