Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
7be99c4a
Commit
7be99c4a
authored
10 years ago
by
Adrian Grange
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix show_existing_frame not decreasing frame buffer ref counter."
parents
669e388e
0aa2af55
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
test/test-data.sha1
+2
-0
2 additions, 0 deletions
test/test-data.sha1
test/test.mk
+2
-0
2 additions, 0 deletions
test/test.mk
test/test_vectors.cc
+1
-1
1 addition, 1 deletion
test/test_vectors.cc
vp9/decoder/vp9_decoder.c
+1
-4
1 addition, 4 deletions
vp9/decoder/vp9_decoder.c
with
6 additions
and
5 deletions
test/test-data.sha1
+
2
−
0
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
...
...
This diff is collapsed.
Click to expand it.
test/test.mk
+
2
−
0
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
...
...
This diff is collapsed.
Click to expand it.
test/test_vectors.cc
+
1
−
1
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
);
...
...
This diff is collapsed.
Click to expand it.
vp9/decoder/vp9_decoder.c
+
1
−
4
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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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