Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c8023893
Commit
c8023893
authored
May 06, 2016
by
Hendrik Leppkes
Committed by
Derek Buitenhuis
May 07, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h2645_parse: initialize the GetBitContext to the proper size
Signed-off-by:
Derek Buitenhuis
<
derek.buitenhuis@gmail.com
>
parent
6eb1b40a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
h2645_parse.c
libavcodec/h2645_parse.c
+1
-1
No files found.
libavcodec/h2645_parse.c
View file @
c8023893
...
...
@@ -325,7 +325,7 @@ int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
nal
->
size_bits
=
get_bit_length
(
nal
,
skip_trailing_zeros
);
ret
=
init_get_bits
8
(
&
nal
->
gb
,
nal
->
data
,
nal
->
size_bits
);
ret
=
init_get_bits
(
&
nal
->
gb
,
nal
->
data
,
nal
->
size_bits
);
if
(
ret
<
0
)
return
ret
;
...
...
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