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

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

Issue 756673003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 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
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_decodemv.c ('k') | source/libvpx/vp9/decoder/vp9_decoder.c » ('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 28 matching lines...) Expand all
39 DECLARE_ALIGNED(16, VP9_COMMON, common); 39 DECLARE_ALIGNED(16, VP9_COMMON, common);
40 40
41 int ready_for_new_data; 41 int ready_for_new_data;
42 42
43 int refresh_frame_flags; 43 int refresh_frame_flags;
44 44
45 int frame_parallel_decode; // frame-based threading. 45 int frame_parallel_decode; // frame-based threading.
46 46
47 VP9Worker lf_worker; 47 VP9Worker lf_worker;
48 VP9Worker *tile_workers; 48 VP9Worker *tile_workers;
49 TileWorkerData *tile_worker_data;
50 TileInfo *tile_worker_info;
49 int num_tile_workers; 51 int num_tile_workers;
50 52
51 TileData *tile_data; 53 TileData *tile_data;
52 int total_tiles; 54 int total_tiles;
53 55
54 VP9LfSync lf_row_sync; 56 VP9LfSync lf_row_sync;
55 57
56 vpx_decrypt_cb decrypt_cb; 58 vpx_decrypt_cb decrypt_cb;
57 void *decrypt_state; 59 void *decrypt_state;
58 60
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 size_t data_sz, 98 size_t data_sz,
97 uint32_t sizes[8], int *count, 99 uint32_t sizes[8], int *count,
98 vpx_decrypt_cb decrypt_cb, 100 vpx_decrypt_cb decrypt_cb,
99 void *decrypt_state); 101 void *decrypt_state);
100 102
101 #ifdef __cplusplus 103 #ifdef __cplusplus
102 } // extern "C" 104 } // extern "C"
103 #endif 105 #endif
104 106
105 #endif // VP9_DECODER_VP9_DECODER_H_ 107 #endif // VP9_DECODER_VP9_DECODER_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_decodemv.c ('k') | source/libvpx/vp9/decoder/vp9_decoder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698