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_onyxd.h" | 17 #include "vp9/decoder/vp9_onyxd.h" |
18 #include "vp9/decoder/vp9_thread.h" | 18 #include "vp9/decoder/vp9_thread.h" |
19 | 19 |
20 typedef struct VP9Decompressor { | 20 typedef struct VP9Decompressor { |
21 DECLARE_ALIGNED(16, MACROBLOCKD, mb); | 21 DECLARE_ALIGNED(16, MACROBLOCKD, mb); |
22 | 22 |
23 DECLARE_ALIGNED(16, VP9_COMMON, common); | 23 DECLARE_ALIGNED(16, VP9_COMMON, common); |
24 | 24 |
| 25 DECLARE_ALIGNED(16, int16_t, dqcoeff[MAX_MB_PLANE][64 * 64]); |
| 26 |
25 VP9D_CONFIG oxcf; | 27 VP9D_CONFIG oxcf; |
26 | 28 |
27 const uint8_t *source; | 29 const uint8_t *source; |
28 size_t source_sz; | 30 size_t source_sz; |
29 | 31 |
30 int64_t last_time_stamp; | 32 int64_t last_time_stamp; |
31 int ready_for_new_data; | 33 int ready_for_new_data; |
32 | 34 |
33 int refresh_frame_flags; | 35 int refresh_frame_flags; |
34 | 36 |
(...skipping 10 matching lines...) Expand all Loading... |
45 | 47 |
46 /* Each tile column has its own MODE_INFO stream. This array indexes them by | 48 /* Each tile column has its own MODE_INFO stream. This array indexes them by |
47 tile column index. */ | 49 tile column index. */ |
48 MODE_INFO **mi_streams; | 50 MODE_INFO **mi_streams; |
49 | 51 |
50 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; | 52 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; |
51 PARTITION_CONTEXT *above_seg_context; | 53 PARTITION_CONTEXT *above_seg_context; |
52 } VP9D_COMP; | 54 } VP9D_COMP; |
53 | 55 |
54 #endif // VP9_DECODER_VP9_ONYXD_INT_H_ | 56 #endif // VP9_DECODER_VP9_ONYXD_INT_H_ |
OLD | NEW |