Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0e3c53ef
Commit
0e3c53ef
authored
Dec 02, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: more MSVC compilation fixes.
* msvc/vlc.dsw: removed non-existant plugins.
parent
97d84d1a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
90 deletions
+6
-90
modules/control/rc/rc.c
modules/control/rc/rc.c
+2
-2
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+2
-2
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+2
-2
msvc/vlc.dsw
msvc/vlc.dsw
+0
-84
No files found.
modules/control/rc/rc.c
View file @
0e3c53ef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* rc.c : remote control stdin/stdout plugin for vlc
* rc.c : remote control stdin/stdout plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: rc.c,v 1.3
8 2003/09/07 22:53:09 fenrir
Exp $
* $Id: rc.c,v 1.3
9 2003/12/02 13:31:23 gbazin
Exp $
*
*
* Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
* Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
*
*
...
@@ -538,7 +538,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
...
@@ -538,7 +538,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
}
}
else
else
{
{
val
.
i_time
=
(
int64_t
)
atoi
(
newval
.
psz_string
)
*
1000000ULL
;
val
.
i_time
=
(
(
int64_t
)
atoi
(
newval
.
psz_string
))
*
1000000
;
var_Set
(
p_input
,
"time"
,
val
);
var_Set
(
p_input
,
"time"
,
val
);
}
}
vlc_object_release
(
p_input
);
vlc_object_release
(
p_input
);
...
...
modules/demux/avi/avi.c
View file @
0e3c53ef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.8
0 2003/11/30 22:14:39 fenrir
Exp $
* $Id: avi.c,v 1.8
1 2003/12/02 13:31:23 gbazin
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
...
@@ -1112,7 +1112,7 @@ static int Control( input_thread_t *p_input, int i_query, va_list args )
...
@@ -1112,7 +1112,7 @@ static int Control( input_thread_t *p_input, int i_query, va_list args )
i64
=
(
int64_t
)
va_arg
(
args
,
int64_t
);
i64
=
(
int64_t
)
va_arg
(
args
,
int64_t
);
if
(
p_sys
->
i_length
>
0
)
if
(
p_sys
->
i_length
>
0
)
{
{
i_percent
=
100
*
i64
/
(
p_sys
->
i_length
*
1000000
ULL
);
i_percent
=
100
*
i64
/
(
p_sys
->
i_length
*
1000000
);
}
}
else
if
(
p_sys
->
i_time
>
0
)
else
if
(
p_sys
->
i_time
>
0
)
{
{
...
...
modules/demux/mp4/libmp4.c
View file @
0e3c53ef
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* libmp4.c : LibMP4 library for mp4 module for vlc
* libmp4.c : LibMP4 library for mp4 module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: libmp4.c,v 1.3
6 2003/11/27 20:50:48 fenrir
Exp $
* $Id: libmp4.c,v 1.3
7 2003/12/02 13:31:23 gbazin
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
...
@@ -143,7 +143,7 @@ static void MP4_ConvertDate2Str( char *psz, uint64_t i_date )
...
@@ -143,7 +143,7 @@ static void MP4_ConvertDate2Str( char *psz, uint64_t i_date )
int
i_sec
;
int
i_sec
;
/* date begin at 1 jan 1904 */
/* date begin at 1 jan 1904 */
i_date
+=
((
1904U
LL
*
365
)
+
17
)
*
24
*
60
*
60
;
i_date
+=
((
1904U
*
365
)
+
17
)
*
24
*
60
*
60
;
i_day
=
i_date
/
(
60
*
60
*
24
);
i_day
=
i_date
/
(
60
*
60
*
24
);
i_hour
=
(
i_date
/
(
60
*
60
)
)
%
60
;
i_hour
=
(
i_date
/
(
60
*
60
)
)
%
60
;
...
...
msvc/vlc.dsw
View file @
0e3c53ef
...
@@ -306,18 +306,6 @@ Package=<4>
...
@@ -306,18 +306,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_es"=.\plugin_es.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_i420_rgb"=.\plugin_i420_rgb.dsp - Package Owner=<4>
Project: "plugin_i420_rgb"=.\plugin_i420_rgb.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
@@ -354,30 +342,6 @@ Package=<4>
...
@@ -354,30 +342,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_idct"=.\plugin_idct.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_idctclassic"=.\plugin_idctclassic.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_ipv4"=.\plugin_ipv4.dsp - Package Owner=<4>
Project: "plugin_ipv4"=.\plugin_ipv4.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
@@ -402,18 +366,6 @@ Package=<4>
...
@@ -402,18 +366,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_motion"=.\plugin_motion.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_motionblur"=.\plugin_motionblur.dsp - Package Owner=<4>
Project: "plugin_motionblur"=.\plugin_motionblur.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
@@ -450,18 +402,6 @@ Package=<4>
...
@@ -450,18 +402,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_mpeg_video_old"=.\plugin_mpeg_video_old.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_ps"=.\plugin_ps.dsp - Package Owner=<4>
Project: "plugin_ps"=.\plugin_ps.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
@@ -570,18 +510,6 @@ Package=<4>
...
@@ -570,18 +510,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_packetizer_a52"=.\plugin_packetizer_a52.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_packetizer_copy"=.\plugin_packetizer_copy.dsp - Package Owner=<4>
Project: "plugin_packetizer_copy"=.\plugin_packetizer_copy.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
@@ -618,18 +546,6 @@ Package=<4>
...
@@ -618,18 +546,6 @@ Package=<4>
###############################################################################
###############################################################################
Project: "plugin_packetizer_mpegaudio"=.\plugin_packetizer_mpegaudio.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_packetizer_mpegvideo"=.\plugin_packetizer_mpegvideo.dsp - Package Owner=<4>
Project: "plugin_packetizer_mpegvideo"=.\plugin_packetizer_mpegvideo.dsp - Package Owner=<4>
Package=<5>
Package=<5>
...
...
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