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
3aa4b42a
Commit
3aa4b42a
authored
11 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Cleaning up read_mv_probs() function."
parents
974a2713
d1722014
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
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp9/decoder/vp9_decodframe.c
+20
-29
vp9/decoder/vp9_decodframe.c
with
20 additions
and
29 deletions
vp9/decoder/vp9_decodframe.c
+
20
−
29
View file @
3aa4b42a
...
@@ -153,47 +153,38 @@ static void read_comp_pred(VP9_COMMON *cm, vp9_reader *r) {
...
@@ -153,47 +153,38 @@ static void read_comp_pred(VP9_COMMON *cm, vp9_reader *r) {
vp9_diff_update_prob
(
r
,
&
cm
->
fc
.
comp_ref_prob
[
i
]);
vp9_diff_update_prob
(
r
,
&
cm
->
fc
.
comp_ref_prob
[
i
]);
}
}
static
void
update_mv
(
vp9_reader
*
r
,
vp9_prob
*
p
)
{
static
void
update_mv_probs
(
vp9_prob
*
p
,
int
n
,
vp9_reader
*
r
)
{
if
(
vp9_read
(
r
,
NMV_UPDATE_PROB
))
int
i
;
*
p
=
(
vp9_read_literal
(
r
,
7
)
<<
1
)
|
1
;
for
(
i
=
0
;
i
<
n
;
++
i
)
if
(
vp9_read
(
r
,
NMV_UPDATE_PROB
))
p
[
i
]
=
(
vp9_read_literal
(
r
,
7
)
<<
1
)
|
1
;
}
}
static
void
read_mv_probs
(
vp9_reader
*
r
,
nmv_context
*
mvc
,
int
allow_hp
)
{
static
void
read_mv_probs
(
nmv_context
*
ctx
,
int
allow_hp
,
vp9_reader
*
r
)
{
int
i
,
j
,
k
;
int
i
,
j
;
for
(
j
=
0
;
j
<
MV_JOINTS
-
1
;
++
j
)
update_mv_probs
(
ctx
->
joints
,
MV_JOINTS
-
1
,
r
);
update_mv
(
r
,
&
mvc
->
joints
[
j
]);
for
(
i
=
0
;
i
<
2
;
++
i
)
{
for
(
i
=
0
;
i
<
2
;
++
i
)
{
nmv_component
*
const
comp
=
&
mvc
->
comps
[
i
];
nmv_component
*
const
comp_ctx
=
&
ctx
->
comps
[
i
];
update_mv_probs
(
&
comp_ctx
->
sign
,
1
,
r
);
update_mv
(
r
,
&
comp
->
sign
);
update_mv_probs
(
comp_ctx
->
classes
,
MV_CLASSES
-
1
,
r
);
update_mv_probs
(
comp_ctx
->
class0
,
CLASS0_SIZE
-
1
,
r
);
for
(
j
=
0
;
j
<
MV_CLASSES
-
1
;
++
j
)
update_mv_probs
(
comp_ctx
->
bits
,
MV_OFFSET_BITS
,
r
);
update_mv
(
r
,
&
comp
->
classes
[
j
]);
for
(
j
=
0
;
j
<
CLASS0_SIZE
-
1
;
++
j
)
update_mv
(
r
,
&
comp
->
class0
[
j
]);
for
(
j
=
0
;
j
<
MV_OFFSET_BITS
;
++
j
)
update_mv
(
r
,
&
comp
->
bits
[
j
]);
}
}
for
(
i
=
0
;
i
<
2
;
++
i
)
{
for
(
i
=
0
;
i
<
2
;
++
i
)
{
nmv_component
*
const
comp
=
&
mvc
->
comps
[
i
];
nmv_component
*
const
comp_ctx
=
&
ctx
->
comps
[
i
];
for
(
j
=
0
;
j
<
CLASS0_SIZE
;
++
j
)
for
(
j
=
0
;
j
<
CLASS0_SIZE
;
++
j
)
for
(
k
=
0
;
k
<
3
;
++
k
)
update_mv_probs
(
comp_ctx
->
class0_fp
[
j
],
3
,
r
);
update_mv
(
r
,
&
comp
->
class0_fp
[
j
][
k
]);
update_mv_probs
(
comp_ctx
->
fp
,
3
,
r
);
for
(
j
=
0
;
j
<
3
;
++
j
)
update_mv
(
r
,
&
comp
->
fp
[
j
]);
}
}
if
(
allow_hp
)
{
if
(
allow_hp
)
{
for
(
i
=
0
;
i
<
2
;
++
i
)
{
for
(
i
=
0
;
i
<
2
;
++
i
)
{
update_mv
(
r
,
&
mvc
->
comps
[
i
].
class0_hp
);
nmv_component
*
const
comp_ctx
=
&
ctx
->
comps
[
i
];
update_mv
(
r
,
&
mvc
->
comps
[
i
].
hp
);
update_mv_probs
(
&
comp_ctx
->
class0_hp
,
1
,
r
);
update_mv_probs
(
&
comp_ctx
->
hp
,
1
,
r
);
}
}
}
}
}
}
...
@@ -1220,7 +1211,7 @@ static int read_compressed_header(VP9D_COMP *pbi, const uint8_t *data,
...
@@ -1220,7 +1211,7 @@ static int read_compressed_header(VP9D_COMP *pbi, const uint8_t *data,
for
(
i
=
0
;
i
<
PARTITION_TYPES
-
1
;
++
i
)
for
(
i
=
0
;
i
<
PARTITION_TYPES
-
1
;
++
i
)
vp9_diff_update_prob
(
&
r
,
&
fc
->
partition_prob
[
j
][
i
]);
vp9_diff_update_prob
(
&
r
,
&
fc
->
partition_prob
[
j
][
i
]);
read_mv_probs
(
&
r
,
nmvc
,
cm
->
allow_high_precision_mv
);
read_mv_probs
(
nmvc
,
cm
->
allow_high_precision_mv
,
&
r
);
}
}
return
vp9_reader_has_error
(
&
r
);
return
vp9_reader_has_error
(
&
r
);
...
...
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