2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
12 #include "treewriter.h"
17 const vp8_prob
*const P
,
22 const vp8_prob p
= P
[i
>>1];
26 const vp8_tree_index j
= T
[i
];
27 const int d
= c
+ vp8_cost_bit(p
, i
& 1);
36 void vp8_cost_tokens(int *c
, const vp8_prob
*p
, vp8_tree t
)