Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
7a8829f6
Commit
7a8829f6
authored
Jun 30, 2014
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initialize bit buffer structure to avoid warning error
Change-Id: I38bb2801ad3f059d5e2eb6513eec92397c67abcd
parent
9aa4fad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vp9/decoder/vp9_decodeframe.c
vp9/decoder/vp9_decodeframe.c
+2
-1
No files found.
vp9/decoder/vp9_decodeframe.c
View file @
7a8829f6
...
...
@@ -1334,7 +1334,8 @@ void vp9_decode_frame(VP9Decoder *pbi,
const
uint8_t
**
p_data_end
)
{
VP9_COMMON
*
const
cm
=
&
pbi
->
common
;
MACROBLOCKD
*
const
xd
=
&
pbi
->
mb
;
struct
vp9_read_bit_buffer
rb
=
{
0
};
struct
vp9_read_bit_buffer
rb
=
{
NULL
,
NULL
,
0
,
NULL
,
0
};
uint8_t
clear_data
[
MAX_VP9_HEADER_SIZE
];
const
size_t
first_partition_size
=
read_uncompressed_header
(
pbi
,
init_read_bit_buffer
(
pbi
,
&
rb
,
data
,
data_end
,
clear_data
));
...
...
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