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
f6f0ffe9
Commit
f6f0ffe9
authored
14 years ago
by
John Koleszar
Committed by
Code Review
14 years ago
Browse files
Options
Download
Plain Diff
Merge "Remove secondary mv clamping from decode stage"
parents
c97a9fc1
3085025f
v1.14.0-linphone
1.4.X
aylesbury
bali
cayuga
dixie
eider
experimental
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
forest
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m29-baseline
m31-baseline
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
mcw
mcw2
nextgen
nextgenv2
pcs-2013
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/atna/dec_sem_sync
sandbox/awatry/initial_opencl_implementation
sandbox/debargha/playground
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/hlundin/error-concealment
sandbox/holmer/error-concealment
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jkoleszar/cached-multibit
sandbox/jkoleszar/experimental-knobs
sandbox/jkoleszar/new-rate-control
sandbox/jkoleszar/new-rtcd
sandbox/jkoleszar/reuse-modemv
sandbox/jkoleszar/use-memcpy
sandbox/jzern@google.com/test
sandbox/slavarnway/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
stable-vp9-decoder
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
vp9-preview
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
v1.2.0
v1.1.0
v1.0.0
v0.9.7
v0.9.7-p1
v0.9.6
v0.9.5
v0.9.2
v0.9.1
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
vp8/common/blockd.h
+1
-2
vp8/common/blockd.h
vp8/decoder/decodemv.c
+23
-21
vp8/decoder/decodemv.c
vp8/decoder/decodframe.c
+88
-13
vp8/decoder/decodframe.c
vp8/decoder/threading.c
+5
-3
vp8/decoder/threading.c
with
117 additions
and
39 deletions
vp8/common/blockd.h
+
1
−
2
View file @
f6f0ffe9
...
@@ -174,9 +174,8 @@ typedef struct
...
@@ -174,9 +174,8 @@ typedef struct
int
dc_diff
;
int
dc_diff
;
unsigned
char
segment_id
;
// Which set of segmentation parameters should be used for this MB
unsigned
char
segment_id
;
// Which set of segmentation parameters should be used for this MB
int
force_no_skip
;
int
force_no_skip
;
int
need_to_clamp_mvs
;
B_MODE_INFO
partition_bmi
[
16
];
B_MODE_INFO
partition_bmi
[
16
];
}
MB_MODE_INFO
;
}
MB_MODE_INFO
;
...
...
This diff is collapsed.
Click to expand it.
vp8/decoder/decodemv.c
+
23
−
21
View file @
f6f0ffe9
...
@@ -171,6 +171,7 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
...
@@ -171,6 +171,7 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
VP8_COMMON
*
const
pc
=
&
pbi
->
common
;
VP8_COMMON
*
const
pc
=
&
pbi
->
common
;
MACROBLOCKD
*
xd
=
&
pbi
->
mb
;
MACROBLOCKD
*
xd
=
&
pbi
->
mb
;
mbmi
->
need_to_clamp_mvs
=
0
;
vp8dx_bool_decoder_fill
(
bc
);
vp8dx_bool_decoder_fill
(
bc
);
// Distance of Mb to the various image edges.
// Distance of Mb to the various image edges.
...
@@ -269,6 +270,17 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
...
@@ -269,6 +270,17 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
break
;
break
;
}
}
if
(
mv
->
col
<
xd
->
mb_to_left_edge
-
LEFT_TOP_MARGIN
||
mv
->
col
>
xd
->
mb_to_right_edge
+
RIGHT_BOTTOM_MARGIN
||
mv
->
row
<
xd
->
mb_to_top_edge
-
LEFT_TOP_MARGIN
||
mv
->
row
>
xd
->
mb_to_bottom_edge
+
RIGHT_BOTTOM_MARGIN
)
mbmi
->
need_to_clamp_mvs
=
1
;
/* Fill (uniform) modes, mvs of jth subset.
/* Fill (uniform) modes, mvs of jth subset.
Must do it here because ensuing subsets can
Must do it here because ensuing subsets can
refer back to us via "left" or "above". */
refer back to us via "left" or "above". */
...
@@ -325,27 +337,18 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
...
@@ -325,27 +337,18 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
read_mv
(
bc
,
mv
,
(
const
MV_CONTEXT
*
)
mvc
);
read_mv
(
bc
,
mv
,
(
const
MV_CONTEXT
*
)
mvc
);
mv
->
row
+=
best_mv
.
row
;
mv
->
row
+=
best_mv
.
row
;
mv
->
col
+=
best_mv
.
col
;
mv
->
col
+=
best_mv
.
col
;
/* Encoder should not produce invalid motion vectors, but since
* arbitrary length MVs can be parsed from the bitstream, we
* need to clamp them here in case we're reading bad data to
* avoid a crash.
*/
#if CONFIG_DEBUG
assert
(
mv
->
col
>=
(
xd
->
mb_to_left_edge
-
LEFT_TOP_MARGIN
));
assert
(
mv
->
col
<=
(
xd
->
mb_to_right_edge
+
RIGHT_BOTTOM_MARGIN
));
assert
(
mv
->
row
>=
(
xd
->
mb_to_top_edge
-
LEFT_TOP_MARGIN
));
assert
(
mv
->
row
<=
(
xd
->
mb_to_bottom_edge
+
RIGHT_BOTTOM_MARGIN
));
#endif
if
(
mv
->
col
<
(
xd
->
mb_to_left_edge
-
LEFT_TOP_MARGIN
))
/* Don't need to check this on NEARMV and NEARESTMV modes
mv
->
col
=
xd
->
mb_to_left_edge
-
LEFT_TOP_MARGIN
;
* since those modes clamp the MV. The NEWMV mode does not,
else
if
(
mv
->
col
>
xd
->
mb_to_right_edge
+
RIGHT_BOTTOM_MARGIN
)
* so signal to the prediction stage whether special
mv
->
col
=
xd
->
mb_to_right_edge
+
RIGHT_BOTTOM_MARGIN
;
* handling may be required.
*/
if
(
mv
->
row
<
(
xd
->
mb_to_top_edge
-
LEFT_TOP_MARGIN
))
if
(
mv
->
col
<
xd
->
mb_to_left_edge
-
LEFT_TOP_MARGIN
mv
->
row
=
xd
->
mb_to_top_edge
-
LEFT_TOP_MARGIN
;
||
mv
->
col
>
xd
->
mb_to_right_edge
+
RIGHT_BOTTOM_MARGIN
else
if
(
mv
->
row
>
xd
->
mb_to_bottom_edge
+
RIGHT_BOTTOM_MARGIN
)
||
mv
->
row
<
xd
->
mb_to_top_edge
-
LEFT_TOP_MARGIN
mv
->
row
=
xd
->
mb_to_bottom_edge
+
RIGHT_BOTTOM_MARGIN
;
||
mv
->
row
>
xd
->
mb_to_bottom_edge
+
RIGHT_BOTTOM_MARGIN
)
mbmi
->
need_to_clamp_mvs
=
1
;
propagate_mv:
/* same MV throughout */
propagate_mv:
/* same MV throughout */
{
{
...
@@ -381,7 +384,6 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
...
@@ -381,7 +384,6 @@ void vp8_decode_mode_mvs(VP8D_COMP *pbi)
assert
(
0
);
assert
(
0
);
#endif
#endif
}
}
}
}
else
else
{
{
...
...
This diff is collapsed.
Click to expand it.
vp8/decoder/decodframe.c
+
88
−
13
View file @
f6f0ffe9
/*
/*
* Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
* Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
*
*
* Use of this source code is governed by a BSD-style license
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
* be found in the AUTHORS file in the root of the source tree.
*/
*/
...
@@ -126,6 +126,47 @@ static void skip_recon_mb(VP8D_COMP *pbi, MACROBLOCKD *xd)
...
@@ -126,6 +126,47 @@ static void skip_recon_mb(VP8D_COMP *pbi, MACROBLOCKD *xd)
}
}
}
}
static
void
clamp_mv_to_umv_border
(
MV
*
mv
,
const
MACROBLOCKD
*
xd
)
{
/* If the MV points so far into the UMV border that no visible pixels
* are used for reconstruction, the subpel part of the MV can be
* discarded and the MV limited to 16 pixels with equivalent results.
*
* This limit kicks in at 19 pixels for the top and left edges, for
* the 16 pixels plus 3 taps right of the central pixel when subpel
* filtering. The bottom and right edges use 16 pixels plus 2 pixels
* left of the central pixel when filtering.
*/
if
(
mv
->
col
<
(
xd
->
mb_to_left_edge
-
(
19
<<
3
)))
mv
->
col
=
xd
->
mb_to_left_edge
-
(
16
<<
3
);
else
if
(
mv
->
col
>
xd
->
mb_to_right_edge
+
(
18
<<
3
))
mv
->
col
=
xd
->
mb_to_right_edge
+
(
16
<<
3
);
if
(
mv
->
row
<
(
xd
->
mb_to_top_edge
-
(
19
<<
3
)))
mv
->
row
=
xd
->
mb_to_top_edge
-
(
16
<<
3
);
else
if
(
mv
->
row
>
xd
->
mb_to_bottom_edge
+
(
18
<<
3
))
mv
->
row
=
xd
->
mb_to_bottom_edge
+
(
16
<<
3
);
}
static
void
clamp_mvs
(
MACROBLOCKD
*
xd
)
{
if
(
xd
->
mbmi
.
mode
==
SPLITMV
)
{
int
i
;
for
(
i
=
0
;
i
<
16
;
i
++
)
clamp_mv_to_umv_border
(
&
xd
->
block
[
i
].
bmi
.
mv
.
as_mv
,
xd
);
}
else
{
clamp_mv_to_umv_border
(
&
xd
->
mbmi
.
mv
.
as_mv
,
xd
);
clamp_mv_to_umv_border
(
&
xd
->
block
[
16
].
bmi
.
mv
.
as_mv
,
xd
);
}
}
static
void
reconstruct_mb
(
VP8D_COMP
*
pbi
,
MACROBLOCKD
*
xd
)
static
void
reconstruct_mb
(
VP8D_COMP
*
pbi
,
MACROBLOCKD
*
xd
)
{
{
if
(
xd
->
frame_type
==
KEY_FRAME
||
xd
->
mbmi
.
ref_frame
==
INTRA_FRAME
)
if
(
xd
->
frame_type
==
KEY_FRAME
||
xd
->
mbmi
.
ref_frame
==
INTRA_FRAME
)
...
@@ -233,6 +274,8 @@ static void de_quantand_idct(VP8D_COMP *pbi, MACROBLOCKD *xd)
...
@@ -233,6 +274,8 @@ static void de_quantand_idct(VP8D_COMP *pbi, MACROBLOCKD *xd)
void
vp8_decode_macroblock
(
VP8D_COMP
*
pbi
,
MACROBLOCKD
*
xd
)
void
vp8_decode_macroblock
(
VP8D_COMP
*
pbi
,
MACROBLOCKD
*
xd
)
{
{
int
eobtotal
=
0
;
int
eobtotal
=
0
;
MV
orig_mvs
[
24
];
int
i
,
do_clamp
=
xd
->
mbmi
.
need_to_clamp_mvs
;
if
(
xd
->
mbmi
.
mb_skip_coeff
)
if
(
xd
->
mbmi
.
mb_skip_coeff
)
{
{
...
@@ -243,20 +286,50 @@ void vp8_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd)
...
@@ -243,20 +286,50 @@ void vp8_decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd)
eobtotal
=
vp8_decode_mb_tokens
(
pbi
,
xd
);
eobtotal
=
vp8_decode_mb_tokens
(
pbi
,
xd
);
}
}
xd
->
mode_info_context
->
mbmi
.
dc_diff
=
1
;
/* Perform temporary clamping of the MV to be used for prediction */
if
(
do_clamp
)
if
(
xd
->
mbmi
.
mode
!=
B_PRED
&&
xd
->
mbmi
.
mode
!=
SPLITMV
&&
eobtotal
==
0
)
{
{
xd
->
mode_info_context
->
mbmi
.
dc_diff
=
0
;
if
(
xd
->
mbmi
.
mode
==
SPLITMV
)
skip_recon_mb
(
pbi
,
xd
);
for
(
i
=
0
;
i
<
24
;
i
++
)
return
;
orig_mvs
[
i
]
=
xd
->
block
[
i
].
bmi
.
mv
.
as_mv
;
else
{
orig_mvs
[
0
]
=
xd
->
mbmi
.
mv
.
as_mv
;
orig_mvs
[
1
]
=
xd
->
block
[
16
].
bmi
.
mv
.
as_mv
;
}
clamp_mvs
(
xd
);
}
}
if
(
xd
->
segmentation_enabled
)
xd
->
mode_info_context
->
mbmi
.
dc_diff
=
1
;
mb_init_dequantizer
(
pbi
,
xd
);
do
{
if
(
xd
->
mbmi
.
mode
!=
B_PRED
&&
xd
->
mbmi
.
mode
!=
SPLITMV
&&
eobtotal
==
0
)
{
xd
->
mode_info_context
->
mbmi
.
dc_diff
=
0
;
skip_recon_mb
(
pbi
,
xd
);
break
;
}
de_quantand_idct
(
pbi
,
xd
);
if
(
xd
->
segmentation_enabled
)
reconstruct_mb
(
pbi
,
xd
);
mb_init_dequantizer
(
pbi
,
xd
);
de_quantand_idct
(
pbi
,
xd
);
reconstruct_mb
(
pbi
,
xd
);
}
while
(
0
);
/* Restore the original MV so as not to affect the entropy context. */
if
(
do_clamp
)
{
if
(
xd
->
mbmi
.
mode
==
SPLITMV
)
for
(
i
=
0
;
i
<
24
;
i
++
)
xd
->
block
[
i
].
bmi
.
mv
.
as_mv
=
orig_mvs
[
i
];
else
{
xd
->
mbmi
.
mv
.
as_mv
=
orig_mvs
[
0
];
xd
->
block
[
16
].
bmi
.
mv
.
as_mv
=
orig_mvs
[
1
];
}
}
}
}
static
int
get_delta_q
(
vp8_reader
*
bc
,
int
prev
,
int
*
q_update
)
static
int
get_delta_q
(
vp8_reader
*
bc
,
int
prev
,
int
*
q_update
)
...
@@ -314,7 +387,9 @@ void vp8_decode_mb_row(VP8D_COMP *pbi,
...
@@ -314,7 +387,9 @@ void vp8_decode_mb_row(VP8D_COMP *pbi,
for
(
mb_col
=
0
;
mb_col
<
pc
->
mb_cols
;
mb_col
++
)
for
(
mb_col
=
0
;
mb_col
<
pc
->
mb_cols
;
mb_col
++
)
{
{
// Take a copy of the mode and Mv information for this macroblock into the xd->mbmi
// Take a copy of the mode and Mv information for this macroblock into the xd->mbmi
vpx_memcpy
(
&
xd
->
mbmi
,
&
xd
->
mode_info_context
->
mbmi
,
32
);
//sizeof(MB_MODE_INFO) );
// the partition_bmi array is unused in the decoder, so don't copy it.
vpx_memcpy
(
&
xd
->
mbmi
,
&
xd
->
mode_info_context
->
mbmi
,
sizeof
(
MB_MODE_INFO
)
-
sizeof
(
xd
->
mbmi
.
partition_bmi
));
if
(
xd
->
mbmi
.
mode
==
SPLITMV
||
xd
->
mbmi
.
mode
==
B_PRED
)
if
(
xd
->
mbmi
.
mode
==
SPLITMV
||
xd
->
mbmi
.
mode
==
B_PRED
)
{
{
...
...
This diff is collapsed.
Click to expand it.
vp8/decoder/threading.c
+
5
−
3
View file @
f6f0ffe9
/*
/*
* Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
* Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
*
*
* Use of this source code is governed by a BSD-style license
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
* be found in the AUTHORS file in the root of the source tree.
*/
*/
...
@@ -154,7 +154,9 @@ THREAD_FUNCTION vp8_thread_decoding_proc(void *p_data)
...
@@ -154,7 +154,9 @@ THREAD_FUNCTION vp8_thread_decoding_proc(void *p_data)
}
}
// Take a copy of the mode and Mv information for this macroblock into the xd->mbmi
// Take a copy of the mode and Mv information for this macroblock into the xd->mbmi
vpx_memcpy
(
&
xd
->
mbmi
,
&
xd
->
mode_info_context
->
mbmi
,
32
);
//sizeof(MB_MODE_INFO) );
// the partition_bmi array is unused in the decoder, so don't copy it.
vpx_memcpy
(
&
xd
->
mbmi
,
&
xd
->
mode_info_context
->
mbmi
,
sizeof
(
MB_MODE_INFO
)
-
sizeof
(
xd
->
mbmi
.
partition_bmi
));
if
(
xd
->
mbmi
.
mode
==
SPLITMV
||
xd
->
mbmi
.
mode
==
B_PRED
)
if
(
xd
->
mbmi
.
mode
==
SPLITMV
||
xd
->
mbmi
.
mode
==
B_PRED
)
{
{
...
...
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