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
72872d3d
Commit
72872d3d
authored
11 years ago
by
Yaowu Xu
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Fixing problem with invalid delta_q reading."
parents
3c05bda0
890eee3b
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
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/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
stable-vp9-decoder
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
test/test-data.sha1
+2
-0
test/test-data.sha1
test/test.mk
+2
-0
test/test.mk
test/test_vector_test.cc
+1
-1
test/test_vector_test.cc
vp9/decoder/vp9_decodframe.c
+1
-2
vp9/decoder/vp9_decodframe.c
with
6 additions
and
3 deletions
test/test-data.sha1
+
2
−
0
View file @
72872d3d
...
...
@@ -522,3 +522,5 @@ fe0af2ee47b1e5f6a66db369e2d7e9d870b38dce vp90-2-03-size-226x226.webm
94ad19b8b699cea105e2ff18f0df2afd7242bcf7 vp90-2-03-size-226x226.webm.md5
495256cfd123fe777b2c0406862ed8468a1f4677 vp91-2-04-yv444.webm
65e3a7ffef61ab340d9140f335ecc49125970c2c vp91-2-04-yv444.webm.md5
b6524e4084d15b5d0caaa3d3d1368db30cbee69c vp90-2-03-deltaq.webm
65f45ec9a55537aac76104818278e0978f94a678 vp90-2-03-deltaq.webm.md5
This diff is collapsed.
Click to expand it.
test/test.mk
+
2
−
0
View file @
72872d3d
...
...
@@ -629,5 +629,7 @@ LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-03-size-226x224.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-03-size-226x224.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-03-size-226x226.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-03-size-226x226.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-03-deltaq.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-03-deltaq.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp91-2-04-yv444.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp91-2-04-yv444.webm.md5
This diff is collapsed.
Click to expand it.
test/test_vector_test.cc
+
1
−
1
View file @
72872d3d
...
...
@@ -159,7 +159,7 @@ const char *kVP9TestVectors[] = {
"vp90-2-03-size-226x198.webm"
,
"vp90-2-03-size-226x200.webm"
,
"vp90-2-03-size-226x202.webm"
,
"vp90-2-03-size-226x208.webm"
,
"vp90-2-03-size-226x210.webm"
,
"vp90-2-03-size-226x224.webm"
,
"vp90-2-03-size-226x226.webm"
,
"vp90-2-03-size-226x226.webm"
,
"vp90-2-03-deltaq.webm"
,
#if CONFIG_NON420
"vp91-2-04-yv444.webm"
#endif
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_decodframe.c
+
1
−
2
View file @
72872d3d
...
...
@@ -454,8 +454,7 @@ static void setup_loopfilter(struct loopfilter *lf,
static
int
read_delta_q
(
struct
vp9_read_bit_buffer
*
rb
,
int
*
delta_q
)
{
const
int
old
=
*
delta_q
;
if
(
vp9_rb_read_bit
(
rb
))
*
delta_q
=
vp9_rb_read_signed_literal
(
rb
,
4
);
*
delta_q
=
vp9_rb_read_bit
(
rb
)
?
vp9_rb_read_signed_literal
(
rb
,
4
)
:
0
;
return
old
!=
*
delta_q
;
}
...
...
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