Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ebbd98f7
Commit
ebbd98f7
authored
Oct 24, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asf: fix compilation warning.
parent
98ca7e9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+3
-3
No files found.
modules/demux/asf/asf.c
View file @
ebbd98f7
...
...
@@ -675,7 +675,7 @@ static int DemuxInit( demux_t *p_demux )
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
bool
b_seekable
;
unsigned
int
i_stream
,
i
;
unsigned
int
i_stream
;
asf_object_content_description_t
*
p_cd
;
asf_object_index_t
*
p_index
;
bool
b_index
;
...
...
@@ -688,7 +688,7 @@ static int DemuxInit( demux_t *p_demux )
p_sys
->
p_fp
=
NULL
;
p_sys
->
b_index
=
0
;
p_sys
->
i_track
=
0
;
for
(
i
=
0
;
i
<
128
;
i
++
)
for
(
i
nt
i
=
0
;
i
<
128
;
i
++
)
{
p_sys
->
track
[
i
]
=
NULL
;
}
...
...
@@ -764,7 +764,7 @@ static int DemuxInit( demux_t *p_demux )
{
int
i_ext_stream
=
ASF_CountObject
(
p_hdr_ext
,
&
asf_object_extended_stream_properties
);
for
(
i
=
0
;
i
<
i_ext_stream
;
i
++
)
for
(
i
nt
i
=
0
;
i
<
i_ext_stream
;
i
++
)
{
asf_object_t
*
p_tmp
=
ASF_FindObject
(
p_hdr_ext
,
...
...
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