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 |
11 #ifndef VP9_DECODER_VP9_ONYXD_INT_H_ | 11 #ifndef VP9_DECODER_VP9_ONYXD_INT_H_ |
12 #define VP9_DECODER_VP9_ONYXD_INT_H_ | 12 #define VP9_DECODER_VP9_ONYXD_INT_H_ |
13 | 13 |
14 #include "./vpx_config.h" | 14 #include "./vpx_config.h" |
15 | 15 |
16 #include "vp9/common/vp9_onyxc_int.h" | 16 #include "vp9/common/vp9_onyxc_int.h" |
| 17 #include "vp9/decoder/vp9_dthread.h" |
17 #include "vp9/decoder/vp9_onyxd.h" | 18 #include "vp9/decoder/vp9_onyxd.h" |
18 #include "vp9/decoder/vp9_thread.h" | 19 #include "vp9/decoder/vp9_thread.h" |
19 | 20 |
20 #ifdef __cplusplus | 21 #ifdef __cplusplus |
21 extern "C" { | 22 extern "C" { |
22 #endif | 23 #endif |
23 | 24 |
24 typedef struct VP9Decompressor { | 25 typedef struct VP9Decompressor { |
25 DECLARE_ALIGNED(16, MACROBLOCKD, mb); | 26 DECLARE_ALIGNED(16, MACROBLOCKD, mb); |
26 | 27 |
(...skipping 15 matching lines...) Expand all Loading... |
42 | 43 |
43 int initial_width; | 44 int initial_width; |
44 int initial_height; | 45 int initial_height; |
45 | 46 |
46 int do_loopfilter_inline; // apply loopfilter to available rows immediately | 47 int do_loopfilter_inline; // apply loopfilter to available rows immediately |
47 VP9Worker lf_worker; | 48 VP9Worker lf_worker; |
48 | 49 |
49 VP9Worker *tile_workers; | 50 VP9Worker *tile_workers; |
50 int num_tile_workers; | 51 int num_tile_workers; |
51 | 52 |
| 53 VP9LfSync lf_row_sync; |
| 54 |
52 /* Each tile column has its own MODE_INFO stream. This array indexes them by | 55 /* Each tile column has its own MODE_INFO stream. This array indexes them by |
53 tile column index. */ | 56 tile column index. */ |
54 MODE_INFO **mi_streams; | 57 MODE_INFO **mi_streams; |
55 | 58 |
56 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; | 59 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; |
57 PARTITION_CONTEXT *above_seg_context; | 60 PARTITION_CONTEXT *above_seg_context; |
58 } VP9D_COMP; | 61 } VP9D_COMP; |
59 | 62 |
60 #ifdef __cplusplus | 63 #ifdef __cplusplus |
61 } // extern "C" | 64 } // extern "C" |
62 #endif | 65 #endif |
63 | 66 |
64 #endif // VP9_DECODER_VP9_ONYXD_INT_H_ | 67 #endif // VP9_DECODER_VP9_ONYXD_INT_H_ |
OLD | NEW |