fed8a1837f
Set on all 16x16 intra/inter modes Features: - Butterfly fDCT/iDCT - Loop filter does not filter internal edges with 16x16 - Optimize coefficient function - Update coefficient probability function - RD - Entropy stats - 16x16 is a config option Have not tested with experiments. hd: 2.60% std-hd: 2.43% yt: 1.32% derf: 0.60% Change-Id: I96fb090517c30c5da84bad4fae602c3ec0c58b1c
25 lines
755 B
C
25 lines
755 B
C
/*
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
|
|
#ifndef DETOKENIZE_H
|
|
#define DETOKENIZE_H
|
|
|
|
#include "onyxd_int.h"
|
|
|
|
void vp8_reset_mb_tokens_context(MACROBLOCKD *x);
|
|
int vp8_decode_mb_tokens(VP8D_COMP *, MACROBLOCKD *);
|
|
int vp8_decode_mb_tokens_8x8(VP8D_COMP *, MACROBLOCKD *);
|
|
#if CONFIG_TX16X16
|
|
int vp8_decode_mb_tokens_16x16(VP8D_COMP *, MACROBLOCKD *);
|
|
#endif
|
|
|
|
#endif /* DETOKENIZE_H */
|