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

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

Issue 111463005: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_onyxd_if.c ('k') | source/libvpx/vp9/decoder/vp9_treereader.h » ('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
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
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_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_onyxd_if.c ('k') | source/libvpx/vp9/decoder/vp9_treereader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698