| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |