| 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 28 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |