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
df55c07e
Commit
df55c07e
authored
Oct 25, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: ogg: missing initializers
Oops
parent
9e49fb76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/ogg.c
modules/demux/ogg.c
+2
-2
No files found.
modules/demux/ogg.c
View file @
df55c07e
...
...
@@ -243,7 +243,7 @@ static int Demux( demux_t * p_demux )
bool
b_canseek
;
int
i_active_streams
=
p_sys
->
i_streams
;
for
(
int
i
;
i
<
p_sys
->
i_streams
;
i
++
)
for
(
int
i
=
0
;
i
<
p_sys
->
i_streams
;
i
++
)
{
if
(
p_sys
->
pp_stream
[
i
]
->
b_finished
)
i_active_streams
--
;
...
...
@@ -1323,7 +1323,7 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
{
demux_sys_t
*
p_ogg
=
p_demux
->
p_sys
;
ogg_packet
oggpacket
;
int
i_stream
;
int
i_stream
=
0
;
p_ogg
->
i_total_length
=
stream_Size
(
p_demux
->
s
);
msg_Dbg
(
p_demux
,
"File length is %"
PRId64
" bytes"
,
p_ogg
->
i_total_length
);
...
...
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