diff options
author | Stefan Holmer <holmer@google.com> | 2011-05-02 15:30:51 +0200 |
---|---|---|
committer | John Koleszar <jkoleszar@google.com> | 2011-05-19 13:46:33 -0400 |
commit | d04f852368dcfb9432d7cef9917666a9bf722ee2 (patch) | |
tree | b2861ee3c45e536328da210aeaa5c3f41277b1bf /vp8/common/onyxd.h | |
parent | 00a1e2f8e4878f59c95f017f4cdbc80ada07a487 (diff) | |
download | libvpx-d04f852368dcfb9432d7cef9917666a9bf722ee2.tar.gz |
Adding error-concealment to the decoder.
The error-concealer is plugged in after any motion vectors have been
decoded. It tries to estimate any missing motion vectors from the
motion vectors of the previous frame. Intra blocks with missing
residual are replaced with inter blocks with estimated motion vectors.
This feature was developed in a separate sandbox
(sandbox/holmer/error-concealment).
Change-Id: I5c8917b031078d79dbafd90f6006680e84a23412
Diffstat (limited to 'vp8/common/onyxd.h')
-rw-r--r-- | vp8/common/onyxd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vp8/common/onyxd.h b/vp8/common/onyxd.h index e53bc3138..140dc5728 100644 --- a/vp8/common/onyxd.h +++ b/vp8/common/onyxd.h @@ -31,6 +31,7 @@ extern "C" int Version; int postprocess; int max_threads; + int error_concealment; } VP8D_CONFIG; typedef enum { |