Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
7be99c4a
Commit
7be99c4a
authored
Jul 15, 2014
by
Adrian Grange
Committed by
Gerrit Code Review
Jul 15, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix show_existing_frame not decreasing frame buffer ref counter."
parents
669e388e
0aa2af55
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
test/test-data.sha1
test/test-data.sha1
+2
-0
test/test.mk
test/test.mk
+2
-0
test/test_vectors.cc
test/test_vectors.cc
+1
-1
vp9/decoder/vp9_decoder.c
vp9/decoder/vp9_decoder.c
+1
-4
No files found.
test/test-data.sha1
View file @
7be99c4a
...
...
@@ -655,6 +655,8 @@ e3ab35d4316c5e81325c50f5236ceca4bc0d35df vp90-2-15-segkey.webm.md5
8f46ba5f785d0c2170591a153e0d0d146a7c8090 vp90-2-15-segkey_adpq.webm.md5
698a6910a97486b833073ef0c0b18d75dce57ee8 vp90-2-16-intra-only.webm
5661b0168752969f055eec37b05fa9fa947dc7eb vp90-2-16-intra-only.webm.md5
c01bb7938f9a9f25e0c37afdec2f2fb73b6cc7fa vp90-2-17-show-existing-frame.webm
cc75f351818b9a619818f5cc77b9bc013d0c1e11 vp90-2-17-show-existing-frame.webm.md5
0321d507ce62dedc8a51b4e9011f7a19aed9c3dc vp91-2-04-yuv444.webm
367e423dd41fdb49aa028574a2cfec5c2f325c5c vp91-2-04-yuv444.webm.md5
76024eb753cdac6a5e5703aaea189d35c3c30ac7 invalid-vp90-2-00-quantizer-00.webm.ivf.s5861_r01-05_b6-.ivf
...
...
test/test.mk
View file @
7be99c4a
...
...
@@ -773,6 +773,8 @@ LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-15-segkey_adpq.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-15-segkey_adpq.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-16-intra-only.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-16-intra-only.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-17-show-existing-frame.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp90-2-17-show-existing-frame.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp91-2-04-yuv444.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER)
+=
vp91-2-04-yuv444.webm.md5
...
...
test/test_vectors.cc
View file @
7be99c4a
...
...
@@ -180,7 +180,7 @@ const char *const kVP9TestVectors[] = {
"vp90-2-14-resize-fp-tiles-8-16.webm"
,
"vp90-2-14-resize-fp-tiles-8-1.webm"
,
"vp90-2-14-resize-fp-tiles-8-2.webm"
,
"vp90-2-14-resize-fp-tiles-8-4.webm"
,
"vp90-2-15-segkey.webm"
,
"vp90-2-15-segkey_adpq.webm"
,
"vp90-2-16-intra-only.webm"
,
"vp90-2-16-intra-only.webm"
,
"vp90-2-17-show-existing-frame.webm"
,
"vp91-2-04-yuv444.webm"
,
};
const
int
kNumVP9TestVectors
=
NELEMENTS
(
kVP9TestVectors
);
...
...
vp9/decoder/vp9_decoder.c
View file @
7be99c4a
...
...
@@ -268,10 +268,7 @@ int vp9_receive_compressed_data(VP9Decoder *pbi,
vp9_decode_frame
(
pbi
,
source
,
source
+
size
,
psource
);
if
(
!
cm
->
show_existing_frame
)
swap_frame_buffers
(
pbi
);
else
cm
->
frame_to_show
=
get_frame_new_buffer
(
cm
);
swap_frame_buffers
(
pbi
);
vp9_clear_system_state
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment