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
3e78ed5d
Commit
3e78ed5d
authored
Feb 22, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: compilation warning fixes (mainly missings headers).
parent
eb0af115
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
12 deletions
+15
-12
modules/codec/rawvideo.c
modules/codec/rawvideo.c
+2
-1
modules/codec/speex.c
modules/codec/speex.c
+2
-1
modules/codec/vorbis.c
modules/codec/vorbis.c
+2
-1
modules/gui/ncurses/ncurses.c
modules/gui/ncurses/ncurses.c
+5
-5
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+2
-2
modules/video_filter/filter_common.h
modules/video_filter/filter_common.h
+2
-2
No files found.
modules/codec/rawvideo.c
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* rawvideo.c: Pseudo video decoder/packetizer for raw video data
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: rawvideo.c,v 1.1
1 2004/01/07 19:20:29 gbazin
Exp $
* $Id: rawvideo.c,v 1.1
2 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -26,6 +26,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/vout.h>
/*****************************************************************************
* decoder_sys_t : raw video decoder descriptor
...
...
modules/codec/speex.c
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* speex.c: speex decoder/packetizer/encoder module making use of libspeex.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: speex.c,v 1.1
2 2004/01/29 19:38:17 gbazin
Exp $
* $Id: speex.c,v 1.1
3 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -26,6 +26,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "vlc_playlist.h"
#include <ogg/ogg.h>
...
...
modules/codec/vorbis.c
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* vorbis.c: vorbis decoder/encoder/packetizer module making use of libvorbis.
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: vorbis.c,v 1.3
1 2004/01/29 17:51:07 zorglub
Exp $
* $Id: vorbis.c,v 1.3
2 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -26,6 +26,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc/decoder.h>
#include <vlc/input.h>
#include "vlc_playlist.h"
#include <ogg/ogg.h>
...
...
modules/gui/ncurses/ncurses.c
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* ncurses.c : NCurses plugin for vlc
*****************************************************************************
* Copyright (C) 2001-2004 VideoLAN
* $Id: ncurses.c,v 1.1
4 2004/01/25 03:29:02 hartman
Exp $
* $Id: ncurses.c,v 1.1
5 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Sam Hocevar <sam@zoy.org>
* Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -497,7 +497,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_sys
->
p_input
,
"prev-title"
,
val
);
}
break
;
return
1
;
case
']'
:
if
(
p_sys
->
p_input
)
...
...
@@ -505,7 +505,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_sys
->
p_input
,
"next-title"
,
val
);
}
break
;
return
1
;
case
'<'
:
if
(
p_sys
->
p_input
)
...
...
@@ -513,7 +513,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_sys
->
p_input
,
"prev-chapter"
,
val
);
}
break
;
return
1
;
case
'>'
:
if
(
p_sys
->
p_input
)
...
...
@@ -521,7 +521,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_sys
->
p_input
,
"next-chapter"
,
val
);
}
break
;
return
1
;
case
'p'
:
if
(
p_intf
->
p_sys
->
p_playlist
)
...
...
modules/mux/mpeg/ts.c
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* ts.c: MPEG-II TS Muxer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: ts.c,v 1.4
4 2004/02/17 13:13:31 gbazin
Exp $
* $Id: ts.c,v 1.4
5 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -396,7 +396,7 @@ static int Open( vlc_object_t *p_this )
ck
[
0
]
=
val
[
8
];
val
[
8
]
=
0
;
i_ck
=
strtol
(
val
,
NULL
,
16
)
<<
32
;
i_ck
=
((
int64_t
)
strtol
(
val
,
NULL
,
16
)
)
<<
32
;
val
[
8
]
=
ck
[
0
];
i_ck
+=
strtol
(
&
val
[
8
],
NULL
,
16
);
for
(
i
=
0
;
i
<
8
;
i
++
)
...
...
modules/video_filter/filter_common.h
View file @
3e78ed5d
...
...
@@ -2,7 +2,7 @@
* filter_common.h: Common filter functions
*****************************************************************************
* Copyright (C) 2001, 2002, 2003 VideoLAN
* $Id: filter_common.h,v 1.
5 2003/10/26 12:46:55 sigmunau
Exp $
* $Id: filter_common.h,v 1.
6 2004/02/22 15:57:41 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -43,7 +43,7 @@
} \
\
/* Allocate the picture */
\
vout_AllocatePicture(
p_vout, p_pic, p_vout->output.i_chroma,
\
vout_AllocatePicture(
VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
\
p_vout->output.i_width, \
p_vout->output.i_height, \
p_vout->output.i_aspect ); \
...
...
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