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
c7f9c717
Commit
c7f9c717
authored
Oct 13, 2014
by
hkuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary local variable.
Change-Id: I7b19b6061cec369825a0a0b7a485ca490dbc12ee
parent
574fd5fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
vp9/decoder/vp9_decodeframe.c
vp9/decoder/vp9_decodeframe.c
+2
-4
No files found.
vp9/decoder/vp9_decodeframe.c
View file @
c7f9c717
...
...
@@ -656,10 +656,8 @@ static INTERP_FILTER read_interp_filter(struct vp9_read_bit_buffer *rb) {
void
vp9_read_frame_size
(
struct
vp9_read_bit_buffer
*
rb
,
int
*
width
,
int
*
height
)
{
const
int
w
=
vp9_rb_read_literal
(
rb
,
16
)
+
1
;
const
int
h
=
vp9_rb_read_literal
(
rb
,
16
)
+
1
;
*
width
=
w
;
*
height
=
h
;
*
width
=
vp9_rb_read_literal
(
rb
,
16
)
+
1
;
*
height
=
vp9_rb_read_literal
(
rb
,
16
)
+
1
;
}
static
void
setup_display_size
(
VP9_COMMON
*
cm
,
struct
vp9_read_bit_buffer
*
rb
)
{
...
...
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