Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
e571d3ba
Commit
e571d3ba
authored
11 years ago
by
James Zern
Browse files
Options
Download
Patches
Plain Diff
vp9: add above/left_context to MACROBLOCKD
Change-Id: I75aab21c1692cbad717564cbb436578fddbc348d
parent
d9a317c8
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
v1.3.0
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
vp9/common/vp9_blockd.h
+4
-0
vp9/common/vp9_blockd.h
vp9/decoder/vp9_decodframe.c
+25
-6
vp9/decoder/vp9_decodframe.c
vp9/decoder/vp9_onyxd_if.c
+1
-0
vp9/decoder/vp9_onyxd_if.c
vp9/decoder/vp9_onyxd_int.h
+1
-0
vp9/decoder/vp9_onyxd_int.h
with
31 additions
and
6 deletions
vp9/common/vp9_blockd.h
+
4
−
0
View file @
e571d3ba
...
@@ -227,6 +227,10 @@ typedef struct macroblockd {
...
@@ -227,6 +227,10 @@ typedef struct macroblockd {
int
q_index
;
int
q_index
;
/* Y,U,V,(A) */
ENTROPY_CONTEXT
*
above_context
[
MAX_MB_PLANE
];
ENTROPY_CONTEXT
left_context
[
MAX_MB_PLANE
][
16
];
PARTITION_CONTEXT
*
above_seg_context
;
PARTITION_CONTEXT
*
above_seg_context
;
PARTITION_CONTEXT
left_seg_context
[
8
];
PARTITION_CONTEXT
left_seg_context
[
8
];
}
MACROBLOCKD
;
}
MACROBLOCKD
;
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_decodframe.c
+
25
−
6
View file @
e571d3ba
...
@@ -204,7 +204,8 @@ static void setup_plane_dequants(VP9_COMMON *cm, MACROBLOCKD *xd, int q_index) {
...
@@ -204,7 +204,8 @@ static void setup_plane_dequants(VP9_COMMON *cm, MACROBLOCKD *xd, int q_index) {
// tile.
// tile.
static
void
alloc_tile_storage
(
VP9D_COMP
*
pbi
,
int
tile_cols
)
{
static
void
alloc_tile_storage
(
VP9D_COMP
*
pbi
,
int
tile_cols
)
{
VP9_COMMON
*
const
cm
=
&
pbi
->
common
;
VP9_COMMON
*
const
cm
=
&
pbi
->
common
;
int
tile_col
;
const
int
aligned_mi_cols
=
mi_cols_aligned_to_sb
(
cm
->
mi_cols
);
int
i
,
tile_col
;
CHECK_MEM_ERROR
(
cm
,
pbi
->
mi_streams
,
CHECK_MEM_ERROR
(
cm
,
pbi
->
mi_streams
,
vpx_realloc
(
pbi
->
mi_streams
,
tile_cols
*
vpx_realloc
(
pbi
->
mi_streams
,
tile_cols
*
...
@@ -215,12 +216,24 @@ static void alloc_tile_storage(VP9D_COMP *pbi, int tile_cols) {
...
@@ -215,12 +216,24 @@ static void alloc_tile_storage(VP9D_COMP *pbi, int tile_cols) {
&
cm
->
mi
[
cm
->
mi_rows
*
cm
->
cur_tile_mi_col_start
];
&
cm
->
mi
[
cm
->
mi_rows
*
cm
->
cur_tile_mi_col_start
];
}
}
// 2 contexts per 'mi unit', so that we have one context per 4x4 txfm
// block where mi unit size is 8x8.
CHECK_MEM_ERROR
(
cm
,
pbi
->
above_context
[
0
],
vpx_realloc
(
pbi
->
above_context
[
0
],
sizeof
(
*
pbi
->
above_context
[
0
])
*
MAX_MB_PLANE
*
2
*
aligned_mi_cols
));
for
(
i
=
1
;
i
<
MAX_MB_PLANE
;
++
i
)
{
pbi
->
above_context
[
i
]
=
pbi
->
above_context
[
0
]
+
i
*
sizeof
(
*
pbi
->
above_context
[
0
])
*
2
*
aligned_mi_cols
;
}
// This is sized based on the entire frame. Each tile operates within its
// This is sized based on the entire frame. Each tile operates within its
// column bounds.
// column bounds.
CHECK_MEM_ERROR
(
cm
,
pbi
->
above_seg_context
,
CHECK_MEM_ERROR
(
cm
,
pbi
->
above_seg_context
,
vpx_realloc
(
pbi
->
above_seg_context
,
vpx_realloc
(
pbi
->
above_seg_context
,
sizeof
(
*
pbi
->
above_seg_context
)
*
sizeof
(
*
pbi
->
above_seg_context
)
*
mi_cols_aligned_to_sb
(
cm
->
mi_cols
))
)
;
aligned_
mi_cols
));
}
}
static
void
decode_block
(
int
plane
,
int
block
,
BLOCK_SIZE
plane_bsize
,
static
void
decode_block
(
int
plane
,
int
block
,
BLOCK_SIZE
plane_bsize
,
...
@@ -335,7 +348,7 @@ static void set_offsets(VP9D_COMP *pbi, BLOCK_SIZE bsize,
...
@@ -335,7 +348,7 @@ static void set_offsets(VP9D_COMP *pbi, BLOCK_SIZE bsize,
// cannot be used.
// cannot be used.
xd
->
last_mi
=
cm
->
prev_mi
?
xd
->
prev_mi_8x8
[
0
]
:
NULL
;
xd
->
last_mi
=
cm
->
prev_mi
?
xd
->
prev_mi_8x8
[
0
]
:
NULL
;
set_skip_context
(
xd
,
cm
->
above_context
,
cm
->
left_context
,
mi_row
,
mi_col
);
set_skip_context
(
xd
,
xd
->
above_context
,
xd
->
left_context
,
mi_row
,
mi_col
);
// Distance of Mb to the various image edges. These are specified to 8th pel
// Distance of Mb to the various image edges. These are specified to 8th pel
// as they are always compared to values that are in 1/8th pel units
// as they are always compared to values that are in 1/8th pel units
...
@@ -719,7 +732,12 @@ static void setup_frame_size_with_refs(VP9D_COMP *pbi,
...
@@ -719,7 +732,12 @@ static void setup_frame_size_with_refs(VP9D_COMP *pbi,
static
void
setup_tile_context
(
VP9D_COMP
*
const
pbi
,
MACROBLOCKD
*
const
xd
,
static
void
setup_tile_context
(
VP9D_COMP
*
const
pbi
,
MACROBLOCKD
*
const
xd
,
int
tile_col
)
{
int
tile_col
)
{
int
i
;
xd
->
mi_stream
=
pbi
->
mi_streams
[
tile_col
];
xd
->
mi_stream
=
pbi
->
mi_streams
[
tile_col
];
for
(
i
=
0
;
i
<
MAX_MB_PLANE
;
++
i
)
{
xd
->
above_context
[
i
]
=
pbi
->
above_context
[
i
];
}
// see note in alloc_tile_storage().
// see note in alloc_tile_storage().
xd
->
above_seg_context
=
pbi
->
above_seg_context
;
xd
->
above_seg_context
=
pbi
->
above_seg_context
;
}
}
...
@@ -744,7 +762,7 @@ static void decode_tile(VP9D_COMP *pbi, vp9_reader *r) {
...
@@ -744,7 +762,7 @@ static void decode_tile(VP9D_COMP *pbi, vp9_reader *r) {
for
(
mi_row
=
cm
->
cur_tile_mi_row_start
;
mi_row
<
cm
->
cur_tile_mi_row_end
;
for
(
mi_row
=
cm
->
cur_tile_mi_row_start
;
mi_row
<
cm
->
cur_tile_mi_row_end
;
mi_row
+=
MI_BLOCK_SIZE
)
{
mi_row
+=
MI_BLOCK_SIZE
)
{
// For a SB there are 2 left contexts, each pertaining to a MB row within
// For a SB there are 2 left contexts, each pertaining to a MB row within
vp9_zero
(
cm
->
left_context
);
vp9_zero
(
xd
->
left_context
);
vp9_zero
(
xd
->
left_seg_context
);
vp9_zero
(
xd
->
left_seg_context
);
for
(
mi_col
=
cm
->
cur_tile_mi_col_start
;
mi_col
<
cm
->
cur_tile_mi_col_end
;
for
(
mi_col
=
cm
->
cur_tile_mi_col_start
;
mi_col
<
cm
->
cur_tile_mi_col_end
;
mi_col
+=
MI_BLOCK_SIZE
)
mi_col
+=
MI_BLOCK_SIZE
)
...
@@ -811,8 +829,9 @@ static const uint8_t *decode_tiles(VP9D_COMP *pbi, const uint8_t *data) {
...
@@ -811,8 +829,9 @@ static const uint8_t *decode_tiles(VP9D_COMP *pbi, const uint8_t *data) {
// Note: this memset assumes above_context[0], [1] and [2]
// Note: this memset assumes above_context[0], [1] and [2]
// are allocated as part of the same buffer.
// are allocated as part of the same buffer.
vpx_memset
(
cm
->
above_context
[
0
],
0
,
vpx_memset
(
pbi
->
above_context
[
0
],
0
,
sizeof
(
ENTROPY_CONTEXT
)
*
MAX_MB_PLANE
*
(
2
*
aligned_mi_cols
));
sizeof
(
*
pbi
->
above_context
[
0
])
*
MAX_MB_PLANE
*
2
*
aligned_mi_cols
);
vpx_memset
(
pbi
->
above_seg_context
,
0
,
vpx_memset
(
pbi
->
above_seg_context
,
0
,
sizeof
(
*
pbi
->
above_seg_context
)
*
aligned_mi_cols
);
sizeof
(
*
pbi
->
above_seg_context
)
*
aligned_mi_cols
);
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_onyxd_if.c
+
1
−
0
View file @
e571d3ba
...
@@ -163,6 +163,7 @@ void vp9_remove_decompressor(VP9D_PTR ptr) {
...
@@ -163,6 +163,7 @@ void vp9_remove_decompressor(VP9D_PTR ptr) {
vp9_worker_end
(
&
pbi
->
lf_worker
);
vp9_worker_end
(
&
pbi
->
lf_worker
);
vpx_free
(
pbi
->
lf_worker
.
data1
);
vpx_free
(
pbi
->
lf_worker
.
data1
);
vpx_free
(
pbi
->
mi_streams
);
vpx_free
(
pbi
->
mi_streams
);
vpx_free
(
pbi
->
above_context
[
0
]);
vpx_free
(
pbi
->
above_seg_context
);
vpx_free
(
pbi
->
above_seg_context
);
vpx_free
(
pbi
);
vpx_free
(
pbi
);
}
}
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_onyxd_int.h
+
1
−
0
View file @
e571d3ba
...
@@ -44,6 +44,7 @@ typedef struct VP9Decompressor {
...
@@ -44,6 +44,7 @@ typedef struct VP9Decompressor {
tile column index. */
tile column index. */
MODE_INFO
**
mi_streams
;
MODE_INFO
**
mi_streams
;
ENTROPY_CONTEXT
*
above_context
[
MAX_MB_PLANE
];
PARTITION_CONTEXT
*
above_seg_context
;
PARTITION_CONTEXT
*
above_seg_context
;
}
VP9D_COMP
;
}
VP9D_COMP
;
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets