Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
4c5277f9
Commit
4c5277f9
authored
May 14, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mux: mp4: uninitialized variables
parent
f3b95223
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/mux/mp4.c
modules/mux/mp4.c
+2
-2
No files found.
modules/mux/mp4.c
View file @
4c5277f9
...
@@ -850,11 +850,11 @@ static bo_t *GetHvcCTag(mp4_stream_t *p_stream)
...
@@ -850,11 +850,11 @@ static bo_t *GetHvcCTag(mp4_stream_t *p_stream)
size_t
i_buffer
=
p_stream
->
fmt
.
i_extra
;
size_t
i_buffer
=
p_stream
->
fmt
.
i_extra
;
uint8_t
general_configuration
[
12
]
=
{
0
};
uint8_t
general_configuration
[
12
]
=
{
0
};
uint8_t
i_numTemporalLayer
;
uint8_t
i_numTemporalLayer
=
0
;
uint8_t
i_chroma_idc
=
1
;
uint8_t
i_chroma_idc
=
1
;
uint8_t
i_bit_depth_luma_minus8
=
0
;
uint8_t
i_bit_depth_luma_minus8
=
0
;
uint8_t
i_bit_depth_chroma_minus8
=
0
;
uint8_t
i_bit_depth_chroma_minus8
=
0
;
bool
b_temporalIdNested
;
bool
b_temporalIdNested
=
false
;
uint32_t
cmp
=
0xFFFFFFFF
;
uint32_t
cmp
=
0xFFFFFFFF
;
while
(
i_buffer
)
{
while
(
i_buffer
)
{
...
...
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