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
445a5545
Commit
445a5545
authored
Sep 13, 2004
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ mux/asf.c: gcc < 3 compile fix
parent
98487b37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/mux/asf.c
modules/mux/asf.c
+3
-3
No files found.
modules/mux/asf.c
View file @
445a5545
...
...
@@ -876,12 +876,12 @@ static block_t *asf_header_create( sout_mux_t *p_mux, vlc_bool_t b_broadcast )
/* metadata object (part of header extension) */
if
(
i_cm_size
)
{
for
(
i
=
0
;
i
<
p_sys
->
i_track
;
i
++
)
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
break
;
int64_t
i_num
,
i_den
;
int
i_dst_num
,
i_dst_den
;
for
(
i
=
0
;
i
<
p_sys
->
i_track
;
i
++
)
if
(
p_sys
->
track
[
i
].
i_cat
==
VIDEO_ES
)
break
;
i_num
=
p_sys
->
track
[
i
].
fmt
.
video
.
i_aspect
*
(
int64_t
)
p_sys
->
track
[
i
].
fmt
.
video
.
i_height
;
i_den
=
VOUT_ASPECT_FACTOR
*
p_sys
->
track
[
i
].
fmt
.
video
.
i_width
;
...
...
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