Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f7fd8b65
Commit
f7fd8b65
authored
Jan 25, 2004
by
Carlo Calabrò
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverting a whole bunch of stupid changes,
sorry :)
parent
c8766742
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
26 additions
and
26 deletions
+26
-26
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+2
-2
modules/audio_output/arts.c
modules/audio_output/arts.c
+2
-2
modules/audio_output/coreaudio.c
modules/audio_output/coreaudio.c
+2
-2
modules/audio_output/directx.c
modules/audio_output/directx.c
+2
-2
modules/audio_output/esd.c
modules/audio_output/esd.c
+2
-2
modules/audio_output/file.c
modules/audio_output/file.c
+2
-2
modules/audio_output/oss.c
modules/audio_output/oss.c
+2
-2
modules/audio_output/sdl.c
modules/audio_output/sdl.c
+2
-2
modules/audio_output/waveout.c
modules/audio_output/waveout.c
+2
-2
modules/packetizer/copy.c
modules/packetizer/copy.c
+2
-2
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4audio.c
+2
-2
modules/packetizer/mpeg4video.c
modules/packetizer/mpeg4video.c
+2
-2
modules/packetizer/mpegvideo.c
modules/packetizer/mpegvideo.c
+2
-2
No files found.
modules/audio_output/alsa.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* alsa.c : alsa plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: alsa.c,v 1.3
7 2004/01/25 17:32
:29 murray Exp $
* $Id: alsa.c,v 1.3
8 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Henri Fallon <henri@videolan.org> - Original Author
* Jeffrey Baker <jwbaker@acm.org> - Port to ALSA 1.0 API
...
...
@@ -97,7 +97,7 @@ vlc_module_begin();
add_category_hint
(
N_
(
"ALSA"
),
NULL
,
VLC_FALSE
);
add_string
(
"alsadev"
,
DEFAULT_ALSA_DEVICE
,
aout_FindAndRestart
,
N_
(
"ALSA Device Name"
),
NULL
,
VLC_FALSE
);
set_description
(
_
(
"ALSA
Audio O
utput"
)
);
set_description
(
_
(
"ALSA
audio o
utput"
)
);
set_capability
(
"audio output"
,
150
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
modules/audio_output/arts.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* arts.c : aRts module
*****************************************************************************
* Copyright (C) 2001-2002 VideoLAN
* $Id: arts.c,v 1.
19 2004/01/25 17:32
:29 murray Exp $
* $Id: arts.c,v 1.
20 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Emmanuel Blindauer <manu@agat.net>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -63,7 +63,7 @@ static void Play ( aout_instance_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"aRts
Audio O
utput"
)
);
set_description
(
_
(
"aRts
audio o
utput"
)
);
set_capability
(
"audio output"
,
50
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
modules/audio_output/coreaudio.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* coreaudio.c: CoreAudio output plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: coreaudio.c,v 1.
8 2004/01/25 17:32
:29 murray Exp $
* $Id: coreaudio.c,v 1.
9 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Colin Delacroix <colin@zoy.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -221,7 +221,7 @@ static OSStatus StreamListener ( AudioStreamID inStream,
"then be used by default for audio playback.")
vlc_module_begin
();
set_description
(
_
(
"CoreAudio
O
utput"
)
);
set_description
(
_
(
"CoreAudio
o
utput"
)
);
set_capability
(
"audio output"
,
100
);
set_callbacks
(
Open
,
Close
);
add_category_hint
(
N_
(
"Audio"
),
NULL
,
VLC_FALSE
);
...
...
modules/audio_output/directx.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* directx.c: Windows DirectX audio output method
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: directx.c,v 1.2
5 2004/01/25 17:32
:29 murray Exp $
* $Id: directx.c,v 1.2
6 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -206,7 +206,7 @@ static void InterleaveS16 ( int16_t *, int16_t *, int *, int );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"DirectX
Audio O
utput"
)
);
set_description
(
_
(
"DirectX
audio o
utput"
)
);
set_capability
(
"audio output"
,
100
);
add_shortcut
(
"directx"
);
set_callbacks
(
OpenAudio
,
CloseAudio
);
...
...
modules/audio_output/esd.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* esd.c : EsounD module
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: esd.c,v 1.2
0 2004/01/25 17:32
:29 murray Exp $
* $Id: esd.c,v 1.2
1 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -63,7 +63,7 @@ static void Play ( aout_instance_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"EsounD
Audio O
utput"
)
);
set_description
(
_
(
"EsounD
audio o
utput"
)
);
set_capability
(
"audio output"
,
50
);
set_callbacks
(
Open
,
Close
);
add_shortcut
(
"esound"
);
...
...
modules/audio_output/file.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* file.c : audio output which writes the samples to a file
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: file.c,v 1.2
5 2004/01/25 17:32
:29 murray Exp $
* $Id: file.c,v 1.2
6 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -112,7 +112,7 @@ vlc_module_begin();
add_file
(
"audiofile"
,
"audiofile.wav"
,
NULL
,
FILE_TEXT
,
FILE_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"audiofile-wav"
,
1
,
NULL
,
WAV_TEXT
,
WAV_LONGTEXT
,
VLC_TRUE
);
set_description
(
N_
(
"
f
ile audio output"
)
);
set_description
(
N_
(
"
F
ile audio output"
)
);
set_capability
(
"audio output"
,
0
);
add_shortcut
(
"file"
);
add_shortcut
(
"audiofile"
);
...
...
modules/audio_output/oss.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* oss.c : OSS /dev/dsp module for vlc
*****************************************************************************
* Copyright (C) 2000-2002 VideoLAN
* $Id: oss.c,v 1.6
2 2004/01/25 17:32
:29 murray Exp $
* $Id: oss.c,v 1.6
3 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Sam Hocevar <sam@zoy.org>
...
...
@@ -109,7 +109,7 @@ vlc_module_begin();
add_file
(
"dspdev"
,
"/dev/dsp"
,
aout_FindAndRestart
,
N_
(
"OSS dsp device"
),
NULL
,
VLC_FALSE
);
add_bool
(
"oss-buggy"
,
0
,
NULL
,
BUGGY_TEXT
,
BUGGY_LONGTEXT
,
VLC_TRUE
);
set_description
(
_
(
"Linux OSS
Audio O
utput"
)
);
set_description
(
_
(
"Linux OSS
audio o
utput"
)
);
set_capability
(
"audio output"
,
100
);
add_shortcut
(
"oss"
);
...
...
modules/audio_output/sdl.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* sdl.c : SDL audio output plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2002 VideoLAN
* $Id: sdl.c,v 1.2
5 2004/01/25 17:32
:29 murray Exp $
* $Id: sdl.c,v 1.2
6 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Michel Kaempf <maxx@via.ecp.fr>
* Sam Hocevar <sam@zoy.org>
...
...
@@ -65,7 +65,7 @@ static void SDLCallback ( void *, byte_t *, int );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Simple DirectMedia Layer
Audio O
utput"
)
);
set_description
(
_
(
"Simple DirectMedia Layer
audio o
utput"
)
);
set_capability
(
"audio output"
,
40
);
add_shortcut
(
"sdl"
);
set_callbacks
(
Open
,
Close
);
...
...
modules/audio_output/waveout.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* waveout.c : Windows waveOut plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: waveout.c,v 1.2
7 2004/01/25 17:32
:29 murray Exp $
* $Id: waveout.c,v 1.2
8 2004/01/25 17:58
:29 murray Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -132,7 +132,7 @@ static void InterleaveS16( int16_t *, int *, int );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Win32 waveOut
Extension O
utput"
)
);
set_description
(
_
(
"Win32 waveOut
extension o
utput"
)
);
set_capability
(
"audio output"
,
50
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
modules/packetizer/copy.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* copy.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: copy.c,v 1.2
2 2004/01/25 17:41
:30 murray Exp $
* $Id: copy.c,v 1.2
3 2004/01/25 17:58
:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -38,7 +38,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"Copy
P
acketizer"
)
);
set_description
(
_
(
"Copy
p
acketizer"
)
);
set_capability
(
"packetizer"
,
1
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
modules/packetizer/mpeg4audio.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* mpeg4audio.c: parse and packetize an MPEG 4 audio stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4audio.c,v 1.1
5 2004/01/25 17:41
:30 murray Exp $
* $Id: mpeg4audio.c,v 1.1
6 2004/01/25 17:58
:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -113,7 +113,7 @@ static int ADTSSyncInfo( decoder_t *, const byte_t * p_buf,
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"MPEG4
Audio P
acketizer"
)
);
set_description
(
_
(
"MPEG4
audio p
acketizer"
)
);
set_capability
(
"packetizer"
,
50
);
set_callbacks
(
OpenPacketizer
,
ClosePacketizer
);
vlc_module_end
();
...
...
modules/packetizer/mpeg4video.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* mpeg4video.c: mpeg 4 video packetizer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4video.c,v 1.2
3 2004/01/25 17:41
:30 murray Exp $
* $Id: mpeg4video.c,v 1.2
4 2004/01/25 17:58
:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -41,7 +41,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"MPEG4
Video P
acketizer"
)
);
set_description
(
_
(
"MPEG4
video p
acketizer"
)
);
set_capability
(
"packetizer"
,
50
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
modules/packetizer/mpegvideo.c
View file @
f7fd8b65
...
...
@@ -2,7 +2,7 @@
* mpegvideo.c: parse and packetize an MPEG1/2 video stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpegvideo.c,v 1.2
6 2004/01/25 17:41
:30 murray Exp $
* $Id: mpegvideo.c,v 1.2
7 2004/01/25 17:58
:30 murray Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -55,7 +55,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
vlc_module_begin
();
set_description
(
_
(
"MPEG-I/II
Video P
acketizer"
)
);
set_description
(
_
(
"MPEG-I/II
video p
acketizer"
)
);
set_capability
(
"packetizer"
,
50
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
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