Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: source/libvpx/vp8/decoder/demode.h

Issue 3417017: Update libvpx sources to v0.9.2-35-ga8a38bc. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/decoder/decodframe.c ('k') | source/libvpx/vp8/decoder/demode.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 *);
OLDNEW
« no previous file with comments | « source/libvpx/vp8/decoder/decodframe.c ('k') | source/libvpx/vp8/decoder/demode.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698