Commit 0e3c53ef authored by Gildas Bazin's avatar Gildas Bazin

* ALL: more MSVC compilation fixes.

* msvc/vlc.dsw: removed non-existant plugins.
parent 97d84d1a
......@@ -2,7 +2,7 @@
* rc.c : remote control stdin/stdout plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: rc.c,v 1.38 2003/09/07 22:53:09 fenrir Exp $
* $Id: rc.c,v 1.39 2003/12/02 13:31:23 gbazin Exp $
*
* Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
*
......@@ -538,7 +538,7 @@ static int Input( vlc_object_t *p_this, char const *psz_cmd,
}
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 );
}
vlc_object_release( p_input );
......
......@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.80 2003/11/30 22:14:39 fenrir Exp $
* $Id: avi.c,v 1.81 2003/12/02 13:31:23 gbazin Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* 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 )
i64 = (int64_t)va_arg( args, int64_t );
if( p_sys->i_length > 0 )
{
i_percent = 100 * i64 / (p_sys->i_length*1000000ULL);
i_percent = 100 * i64 / (p_sys->i_length*1000000);
}
else if( p_sys->i_time > 0 )
{
......
......@@ -2,7 +2,7 @@
* libmp4.c : LibMP4 library for mp4 module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: libmp4.c,v 1.36 2003/11/27 20:50:48 fenrir Exp $
* $Id: libmp4.c,v 1.37 2003/12/02 13:31:23 gbazin Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* 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 )
int i_sec;
/* date begin at 1 jan 1904 */
i_date += ((1904ULL * 365) + 17) * 24 * 60 * 60;
i_date += ((1904U * 365) + 17) * 24 * 60 * 60;
i_day = i_date / ( 60*60*24);
i_hour = ( i_date /( 60*60 ) ) % 60;
......
......@@ -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>
Package=<5>
......@@ -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>
Package=<5>
......@@ -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>
Package=<5>
......@@ -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>
Package=<5>
......@@ -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>
Package=<5>
......@@ -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>
Package=<5>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment