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

Side by Side Diff: source/libvpx/vp9/decoder/vp9_decoder.c

Issue 800493003: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Keep vp9_iht8x8_add_neon disabled because of http://llvm.org/bugs/show_bug.cgi?id=22178 Created 5 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
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_decoder.h ('k') | source/libvpx/vp9/decoder/vp9_dthread.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
(...skipping 14 matching lines...) Expand all
25 #if CONFIG_VP9_POSTPROC 25 #if CONFIG_VP9_POSTPROC
26 #include "vp9/common/vp9_postproc.h" 26 #include "vp9/common/vp9_postproc.h"
27 #endif 27 #endif
28 #include "vp9/common/vp9_quant_common.h" 28 #include "vp9/common/vp9_quant_common.h"
29 #include "vp9/common/vp9_reconintra.h" 29 #include "vp9/common/vp9_reconintra.h"
30 #include "vp9/common/vp9_systemdependent.h" 30 #include "vp9/common/vp9_systemdependent.h"
31 31
32 #include "vp9/decoder/vp9_decodeframe.h" 32 #include "vp9/decoder/vp9_decodeframe.h"
33 #include "vp9/decoder/vp9_decoder.h" 33 #include "vp9/decoder/vp9_decoder.h"
34 #include "vp9/decoder/vp9_detokenize.h" 34 #include "vp9/decoder/vp9_detokenize.h"
35 #include "vp9/decoder/vp9_dthread.h"
36 35
37 static void initialize_dec(void) { 36 static void initialize_dec(void) {
38 static volatile int init_done = 0; 37 static volatile int init_done = 0;
39 38
40 if (!init_done) { 39 if (!init_done) {
41 vp9_rtcd(); 40 vp9_rtcd();
42 vp9_init_intra_predictors(); 41 vp9_init_intra_predictors();
43 init_done = 1; 42 init_done = 1;
44 } 43 }
45 } 44 }
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 405
407 for (j = 0; j < mag; ++j) 406 for (j = 0; j < mag; ++j)
408 this_sz |= (*x++) << (j * 8); 407 this_sz |= (*x++) << (j * 8);
409 sizes[i] = this_sz; 408 sizes[i] = this_sz;
410 } 409 }
411 *count = frames; 410 *count = frames;
412 } 411 }
413 } 412 }
414 return VPX_CODEC_OK; 413 return VPX_CODEC_OK;
415 } 414 }
OLDNEW
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_decoder.h ('k') | source/libvpx/vp9/decoder/vp9_dthread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698