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
3b7794f9
Commit
3b7794f9
authored
11 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "BITSTREAM - "update_map" SEMANTICS BROKEN IN
398ddafb
"
parents
4093192e
0e230483
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
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/decoder/vp9_decodemv.c
+28
-4
vp9/decoder/vp9_decodemv.c
vp9/decoder/vp9_decodframe.c
+0
-11
vp9/decoder/vp9_decodframe.c
with
28 additions
and
15 deletions
vp9/decoder/vp9_decodemv.c
+
28
−
4
View file @
3b7794f9
...
@@ -91,9 +91,28 @@ static TX_SIZE read_tx_size(VP9D_COMP *pbi, TX_MODE tx_mode,
...
@@ -91,9 +91,28 @@ static TX_SIZE read_tx_size(VP9D_COMP *pbi, TX_MODE tx_mode,
return
TX_4X4
;
return
TX_4X4
;
}
}
static
void
set_segment_id
(
VP9_COMMON
*
cm
,
BLOCK_SIZE
bsize
,
int
mi_row
,
int
mi_col
,
int
segment_id
)
{
const
int
mi_offset
=
mi_row
*
cm
->
mi_cols
+
mi_col
;
const
int
bw
=
1
<<
mi_width_log2
(
bsize
);
const
int
bh
=
1
<<
mi_height_log2
(
bsize
);
const
int
xmis
=
MIN
(
cm
->
mi_cols
-
mi_col
,
bw
);
const
int
ymis
=
MIN
(
cm
->
mi_rows
-
mi_row
,
bh
);
int
x
,
y
;
assert
(
segment_id
>=
0
&&
segment_id
<
MAX_SEGMENTS
);
for
(
y
=
0
;
y
<
ymis
;
y
++
)
for
(
x
=
0
;
x
<
xmis
;
x
++
)
cm
->
last_frame_seg_map
[
mi_offset
+
y
*
cm
->
mi_cols
+
x
]
=
segment_id
;
}
static
int
read_intra_segment_id
(
VP9D_COMP
*
pbi
,
int
mi_row
,
int
mi_col
,
static
int
read_intra_segment_id
(
VP9D_COMP
*
pbi
,
int
mi_row
,
int
mi_col
,
vp9_reader
*
r
)
{
vp9_reader
*
r
)
{
MACROBLOCKD
*
const
xd
=
&
pbi
->
mb
;
struct
segmentation
*
const
seg
=
&
pbi
->
common
.
seg
;
struct
segmentation
*
const
seg
=
&
pbi
->
common
.
seg
;
const
BLOCK_SIZE
bsize
=
xd
->
this_mi
->
mbmi
.
sb_type
;
int
segment_id
;
if
(
!
seg
->
enabled
)
if
(
!
seg
->
enabled
)
return
0
;
// Default for disabled segmentation
return
0
;
// Default for disabled segmentation
...
@@ -101,7 +120,9 @@ static int read_intra_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
...
@@ -101,7 +120,9 @@ static int read_intra_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
if
(
!
seg
->
update_map
)
if
(
!
seg
->
update_map
)
return
0
;
return
0
;
return
read_segment_id
(
r
,
seg
);
segment_id
=
read_segment_id
(
r
,
seg
);
set_segment_id
(
&
pbi
->
common
,
bsize
,
mi_row
,
mi_col
,
segment_id
);
return
segment_id
;
}
}
static
int
read_inter_segment_id
(
VP9D_COMP
*
pbi
,
int
mi_row
,
int
mi_col
,
static
int
read_inter_segment_id
(
VP9D_COMP
*
pbi
,
int
mi_row
,
int
mi_col
,
...
@@ -110,7 +131,7 @@ static int read_inter_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
...
@@ -110,7 +131,7 @@ static int read_inter_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
MACROBLOCKD
*
const
xd
=
&
pbi
->
mb
;
MACROBLOCKD
*
const
xd
=
&
pbi
->
mb
;
struct
segmentation
*
const
seg
=
&
cm
->
seg
;
struct
segmentation
*
const
seg
=
&
cm
->
seg
;
const
BLOCK_SIZE
bsize
=
xd
->
this_mi
->
mbmi
.
sb_type
;
const
BLOCK_SIZE
bsize
=
xd
->
this_mi
->
mbmi
.
sb_type
;
int
pred_segment_id
;
;
int
pred_segment_id
,
segment_id
;
if
(
!
seg
->
enabled
)
if
(
!
seg
->
enabled
)
return
0
;
// Default for disabled segmentation
return
0
;
// Default for disabled segmentation
...
@@ -124,10 +145,13 @@ static int read_inter_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
...
@@ -124,10 +145,13 @@ static int read_inter_segment_id(VP9D_COMP *pbi, int mi_row, int mi_col,
const
vp9_prob
pred_prob
=
vp9_get_pred_prob_seg_id
(
seg
,
xd
);
const
vp9_prob
pred_prob
=
vp9_get_pred_prob_seg_id
(
seg
,
xd
);
const
int
pred_flag
=
vp9_read
(
r
,
pred_prob
);
const
int
pred_flag
=
vp9_read
(
r
,
pred_prob
);
vp9_set_pred_flag_seg_id
(
xd
,
pred_flag
);
vp9_set_pred_flag_seg_id
(
xd
,
pred_flag
);
return
pred_flag
?
pred_segment_id
:
read_segment_id
(
r
,
seg
);
segment_id
=
pred_flag
?
pred_segment_id
:
read_segment_id
(
r
,
seg
);
}
else
{
}
else
{
return
read_segment_id
(
r
,
seg
);
segment_id
=
read_segment_id
(
r
,
seg
);
}
}
set_segment_id
(
cm
,
bsize
,
mi_row
,
mi_col
,
segment_id
);
return
segment_id
;
}
}
static
uint8_t
read_skip_coeff
(
VP9D_COMP
*
pbi
,
int
segment_id
,
vp9_reader
*
r
)
{
static
uint8_t
read_skip_coeff
(
VP9D_COMP
*
pbi
,
int
segment_id
,
vp9_reader
*
r
)
{
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_decodframe.c
+
0
−
11
View file @
3b7794f9
...
@@ -945,15 +945,6 @@ void vp9_init_dequantizer(VP9_COMMON *cm) {
...
@@ -945,15 +945,6 @@ void vp9_init_dequantizer(VP9_COMMON *cm) {
}
}
}
}
static
void
update_segmentation_map
(
VP9_COMMON
*
cm
)
{
int
i
,
j
;
for
(
i
=
0
;
i
<
cm
->
mi_rows
;
++
i
)
for
(
j
=
0
;
j
<
cm
->
mi_cols
;
++
j
)
cm
->
last_frame_seg_map
[
i
*
cm
->
mi_cols
+
j
]
=
cm
->
mi_grid_visible
[
i
*
cm
->
mode_info_stride
+
j
]
->
mbmi
.
segment_id
;
}
int
vp9_decode_frame
(
VP9D_COMP
*
pbi
,
const
uint8_t
**
p_data_end
)
{
int
vp9_decode_frame
(
VP9D_COMP
*
pbi
,
const
uint8_t
**
p_data_end
)
{
int
i
;
int
i
;
VP9_COMMON
*
const
cm
=
&
pbi
->
common
;
VP9_COMMON
*
const
cm
=
&
pbi
->
common
;
...
@@ -1033,7 +1024,5 @@ int vp9_decode_frame(VP9D_COMP *pbi, const uint8_t **p_data_end) {
...
@@ -1033,7 +1024,5 @@ int vp9_decode_frame(VP9D_COMP *pbi, const uint8_t **p_data_end) {
if
(
cm
->
refresh_frame_context
)
if
(
cm
->
refresh_frame_context
)
cm
->
frame_contexts
[
cm
->
frame_context_idx
]
=
cm
->
fc
;
cm
->
frame_contexts
[
cm
->
frame_context_idx
]
=
cm
->
fc
;
update_segmentation_map
(
cm
);
return
0
;
return
0
;
}
}
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