2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_COEFUPDATEPROBS_H_
|
2013-03-05 23:12:16 +01:00
|
|
|
#define VP9_COMMON_VP9_COEFUPDATEPROBS_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
/* Update probabilities for the nodes in the token entropy tree.
|
2012-11-27 22:59:17 +01:00
|
|
|
Generated file included by vp9_entropy.c */
|
2012-05-24 21:02:12 +02:00
|
|
|
#define COEF_UPDATE_PROB 252
|
|
|
|
#define COEF_UPDATE_PROB_8X8 252
|
2012-08-03 02:03:14 +02:00
|
|
|
#define COEF_UPDATE_PROB_16X16 252
|
2012-12-19 00:31:19 +01:00
|
|
|
|
2013-02-20 19:16:24 +01:00
|
|
|
#if CONFIG_CODE_NONZEROCOUNT
|
|
|
|
#define NZC_UPDATE_PROB_4X4 252
|
|
|
|
#define NZC_UPDATE_PROB_8X8 252
|
|
|
|
#define NZC_UPDATE_PROB_16X16 252
|
|
|
|
#define NZC_UPDATE_PROB_32X32 252
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_COEFUPDATEPROBS_H__
|