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

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

Issue 996503002: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 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_decodemv.c ('k') | source/libvpx/vp9/decoder/vp9_dthread.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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 int ready_for_new_data; 49 int ready_for_new_data;
50 50
51 int refresh_frame_flags; 51 int refresh_frame_flags;
52 52
53 int frame_parallel_decode; // frame-based threading. 53 int frame_parallel_decode; // frame-based threading.
54 54
55 // TODO(hkuang): Combine this with cur_buf in macroblockd as they are 55 // TODO(hkuang): Combine this with cur_buf in macroblockd as they are
56 // the same. 56 // the same.
57 RefCntBuffer *cur_buf; // Current decoding frame buffer. 57 RefCntBuffer *cur_buf; // Current decoding frame buffer.
58 RefCntBuffer *prev_buf; // Previous decoding frame buffer.
59 58
60 VP9Worker *frame_worker_owner; // frame_worker that owns this pbi. 59 VP9Worker *frame_worker_owner; // frame_worker that owns this pbi.
61 VP9Worker lf_worker; 60 VP9Worker lf_worker;
62 VP9Worker *tile_workers; 61 VP9Worker *tile_workers;
63 TileWorkerData *tile_worker_data; 62 TileWorkerData *tile_worker_data;
64 TileInfo *tile_worker_info; 63 TileInfo *tile_worker_info;
65 int num_tile_workers; 64 int num_tile_workers;
66 65
67 TileData *tile_data; 66 TileData *tile_data;
68 int total_tiles; 67 int total_tiles;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 pool->release_fb_cb(pool->cb_priv, &frame_bufs[idx].raw_frame_buffer); 127 pool->release_fb_cb(pool->cb_priv, &frame_bufs[idx].raw_frame_buffer);
129 } 128 }
130 } 129 }
131 } 130 }
132 131
133 #ifdef __cplusplus 132 #ifdef __cplusplus
134 } // extern "C" 133 } // extern "C"
135 #endif 134 #endif
136 135
137 #endif // VP9_DECODER_VP9_DECODER_H_ 136 #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_dthread.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698