OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2010 The VP8 project authors. All Rights Reserved. | |
3 * | |
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. | |
9 */ | |
10 | |
11 | |
12 #include "onyxd_int.h" | |
13 | |
14 /* Read (intra) modes for all blocks in a keyframe */ | |
15 | |
16 void vp8_kfread_modes(VP8D_COMP *pbi); | |
17 | |
18 /* Intra mode for a Y subblock */ | |
19 | |
20 int vp8_read_bmode(vp8_reader *, const vp8_prob *); | |
21 | |
22 /* MB intra Y mode trees differ for key and inter frames. */ | |
23 | |
24 int vp8_read_ymode(vp8_reader *, const vp8_prob *); | |
25 int vp8_kfread_ymode(vp8_reader *, const vp8_prob *); | |
26 | |
27 /* MB intra UV mode trees are the same for key and inter frames. */ | |
28 | |
29 int vp8_read_uv_mode(vp8_reader *, const vp8_prob *); | |
30 | |
31 /* Read any macroblock-level features that may be present. */ | |
32 | |
33 void vp8_read_mb_features(vp8_reader *, MB_MODE_INFO *, MACROBLOCKD *); | |
OLD | NEW |