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

Side by Side Diff: source/libvpx/vp9/common/vp9_alloccommon.c

Issue 11974002: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 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/vp9/common/vp9_alloccommon.h ('k') | source/libvpx/vp9/common/vp9_blockd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "vpx_ports/config.h" 12 #include "./vpx_config.h"
13 #include "vp9/common/vp9_blockd.h" 13 #include "vp9/common/vp9_blockd.h"
14 #include "vpx_mem/vpx_mem.h" 14 #include "vpx_mem/vpx_mem.h"
15 #include "vp9/common/vp9_onyxc_int.h" 15 #include "vp9/common/vp9_onyxc_int.h"
16 #include "vp9/common/vp9_findnearmv.h" 16 #include "vp9/common/vp9_findnearmv.h"
17 #include "vp9/common/vp9_entropymode.h" 17 #include "vp9/common/vp9_entropymode.h"
18 #include "vp9/common/vp9_entropymv.h" 18 #include "vp9/common/vp9_entropymv.h"
19 #include "vp9/common/vp9_systemdependent.h" 19 #include "vp9/common/vp9_systemdependent.h"
20 20
21 21
22 void vp9_update_mode_info_border(VP9_COMMON *cpi, MODE_INFO *mi_base) { 22 void vp9_update_mode_info_border(VP9_COMMON *cpi, MODE_INFO *mi_base) {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 void vp9_remove_common(VP9_COMMON *oci) { 213 void vp9_remove_common(VP9_COMMON *oci) {
214 vp9_de_alloc_frame_buffers(oci); 214 vp9_de_alloc_frame_buffers(oci);
215 } 215 }
216 216
217 void vp9_initialize_common() { 217 void vp9_initialize_common() {
218 vp9_coef_tree_initialize(); 218 vp9_coef_tree_initialize();
219 219
220 vp9_entropy_mode_init(); 220 vp9_entropy_mode_init();
221 221
222 vp9_entropy_mv_init(); 222 vp9_entropy_mv_init();
223
224 #if CONFIG_NEWCOEFCONTEXT
225 vp9_init_neighbors();
226 #endif
223 } 227 }
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_alloccommon.h ('k') | source/libvpx/vp9/common/vp9_blockd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698