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

Side by Side Diff: source/libvpx/vp8/common/onyxc_int.h

Issue 11555023: libvpx: Add VP9 decoder. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 11
12 #ifndef __INC_VP8C_INT_H 12 #ifndef __INC_VP8C_INT_H
13 #define __INC_VP8C_INT_H 13 #define __INC_VP8C_INT_H
14 14
15 #include "vpx_config.h" 15 #include "vpx_config.h"
16 #include "vpx_rtcd.h" 16 #include "vp8_rtcd.h"
17 #include "vpx/internal/vpx_codec_internal.h" 17 #include "vpx/internal/vpx_codec_internal.h"
18 #include "loopfilter.h" 18 #include "loopfilter.h"
19 #include "entropymv.h" 19 #include "entropymv.h"
20 #include "entropy.h" 20 #include "entropy.h"
21 #if CONFIG_POSTPROC 21 #if CONFIG_POSTPROC
22 #include "postproc.h" 22 #include "postproc.h"
23 #endif 23 #endif
24 24
25 /*#ifdef PACKET_TESTING*/ 25 /*#ifdef PACKET_TESTING*/
26 #include "header.h" 26 #include "header.h"
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 #if CONFIG_MULTITHREAD 170 #if CONFIG_MULTITHREAD
171 int processor_core_count; 171 int processor_core_count;
172 #endif 172 #endif
173 #if CONFIG_POSTPROC 173 #if CONFIG_POSTPROC
174 struct postproc_state postproc_state; 174 struct postproc_state postproc_state;
175 #endif 175 #endif
176 int cpu_caps; 176 int cpu_caps;
177 } VP8_COMMON; 177 } VP8_COMMON;
178 178
179 #endif 179 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698