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
fa2a8210
Commit
fa2a8210
authored
Nov 07, 2001
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed some win32 compile issues. * Don't use long long, use u64/s64 (int_types.h).
parent
20e2160e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
12 deletions
+6
-12
include/common.h
include/common.h
+1
-5
plugins/dummy/input_dummy.c
plugins/dummy/input_dummy.c
+2
-1
src/audio_output/aout_common.h
src/audio_output/aout_common.h
+2
-2
src/input/input.c
src/input/input.c
+1
-4
No files found.
include/common.h
View file @
fa2a8210
...
...
@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: common.h,v 1.4
4 2001/10/31 11:55:53 reno
Exp $
* $Id: common.h,v 1.4
5 2001/11/07 22:58:13 jlj
Exp $
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
...
...
@@ -232,10 +232,6 @@ struct pgrm_descriptor_s;
#endif
#if defined( WIN32 )
# ifndef _OFF_T_DEFINED
typedef
__int64
off_t
;
# define _OFF_T_DEFINED
# endif
# ifndef snprintf
# define snprintf _snprintf
/* snprintf not defined in mingw32 (bug?) */
# endif
...
...
plugins/dummy/input_dummy.c
View file @
fa2a8210
...
...
@@ -2,7 +2,7 @@
* input_dummy.c: dummy input plugin, to manage "vlc:***" special options
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: input_dummy.c,v 1.
5 2001/08/09 08:20:26 sam
Exp $
* $Id: input_dummy.c,v 1.
6 2001/11/07 22:58:13 jlj
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -30,6 +30,7 @@
#include "defs.h"
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
...
...
src/audio_output/aout_common.h
View file @
fa2a8210
...
...
@@ -2,7 +2,7 @@
* aout_common.h: audio output inner functions
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: aout_common.h,v 1.
5 2001/11/01 00:29:54 asmax
Exp $
* $Id: aout_common.h,v 1.
6 2001/11/07 22:58:13 jlj
Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
*
...
...
@@ -79,7 +79,7 @@ static __inline__ int NextFrame( aout_thread_t * p_aout, aout_fifo_t * p_fifo,
mtime_t
aout_date
)
{
long
l_units
,
l_rate
;
long
long
l_delta
;
u64
l_delta
;
/* We take the lock */
vlc_mutex_lock
(
&
p_fifo
->
data_lock
);
...
...
src/input/input.c
View file @
fa2a8210
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input.c,v 1.15
0 2001/11/06 17:12:02 massiot
Exp $
* $Id: input.c,v 1.15
1 2001/11/07 22:58:13 jlj
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -47,15 +47,12 @@
#endif
#ifdef WIN32
# include <winsock.h>
# include <winsock2.h>
#elif !defined( SYS_BEOS ) && !defined( SYS_NTO )
# include <netdb.h>
/* hostent ... */
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
# include <sys/types.h>
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_TIMES_H
...
...
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