Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
82a67660
Commit
82a67660
authored
Jan 25, 2004
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
string review by Christophe Mutricy aka xtophe
parent
1e67ea66
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
61 additions
and
61 deletions
+61
-61
modules/access_output/http.c
modules/access_output/http.c
+2
-2
modules/access_output/udp.c
modules/access_output/udp.c
+5
-5
modules/audio_mixer/float32.c
modules/audio_mixer/float32.c
+2
-2
modules/audio_mixer/spdif.c
modules/audio_mixer/spdif.c
+2
-2
modules/audio_mixer/trivial.c
modules/audio_mixer/trivial.c
+2
-2
modules/gui/skins2/commands/cmd_input.hpp
modules/gui/skins2/commands/cmd_input.hpp
+3
-3
modules/gui/skins2/parser/builder.cpp
modules/gui/skins2/parser/builder.cpp
+12
-12
modules/gui/skins2/src/dialogs.cpp
modules/gui/skins2/src/dialogs.cpp
+3
-3
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+2
-2
modules/misc/dummy/dummy.c
modules/misc/dummy/dummy.c
+9
-9
modules/misc/dummy/interface.c
modules/misc/dummy/interface.c
+2
-2
modules/misc/logger/logger.c
modules/misc/logger/logger.c
+6
-6
modules/misc/network/ipv6.c
modules/misc/network/ipv6.c
+5
-5
modules/video_chroma/i420_ymga.c
modules/video_chroma/i420_ymga.c
+2
-2
modules/video_chroma/i420_yuy2.c
modules/video_chroma/i420_yuy2.c
+2
-2
modules/video_chroma/i422_yuy2.c
modules/video_chroma/i422_yuy2.c
+2
-2
No files found.
modules/access_output/http.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* http.c
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: http.c,v 1.
9 2004/01/15 22:58:12 gbazin
Exp $
* $Id: http.c,v 1.
10 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -356,7 +356,7 @@ static int Write( sout_access_out_t *p_access, sout_buffer_t *p_buffer )
*****************************************************************************/
static
int
Seek
(
sout_access_out_t
*
p_access
,
off_t
i_pos
)
{
msg_Err
(
p_access
,
"
http
sout access cannot seek"
);
msg_Err
(
p_access
,
"
HTTP
sout access cannot seek"
);
return
(
VLC_EGENERIC
);
}
modules/access_output/udp.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* udp.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.1
7 2004/01/23 17:56:14 gbazin
Exp $
* $Id: udp.c,v 1.1
8 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -70,10 +70,10 @@ static sout_buffer_t *NewUDPPacket( sout_access_out_t *, mtime_t );
/*****************************************************************************
* Module descriptor
*****************************************************************************/
#define CACHING_TEXT N_("
caching value in ms
")
#define CACHING_TEXT N_("
Caching value (ms)
")
#define CACHING_LONGTEXT N_( \
"Allows you to modify the default caching value for udp streams. This " \
"value should be set in mil
iseconds unit
s." )
"value should be set in mil
lisecond
s." )
vlc_module_begin
();
set_description
(
_
(
"UDP stream ouput"
)
);
...
...
@@ -142,7 +142,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_access
->
psz_access
!=
NULL
&&
!
strcmp
(
p_access
->
psz_access
,
"rtp"
)
)
{
msg_Warn
(
p_access
,
"becarefull that rtp ouput work only with ts "
msg_Warn
(
p_access
,
"be
carefull that rtp ouput work only with ts "
"payload(not an error)"
);
p_sys
->
b_rtpts
=
1
;
}
...
...
@@ -358,7 +358,7 @@ static int WriteRaw( sout_access_out_t *p_access, sout_buffer_t *p_buffer )
*****************************************************************************/
static
int
Seek
(
sout_access_out_t
*
p_access
,
off_t
i_pos
)
{
msg_Err
(
p_access
,
"
udp
sout access cannot seek"
);
msg_Err
(
p_access
,
"
UDP
sout access cannot seek"
);
return
(
-
1
);
}
...
...
modules/audio_mixer/float32.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* float32.c : precise float32 audio mixer implementation
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: float32.c,v 1.
9 2003/03/30 18:14:36 gbazin
Exp $
* $Id: float32.c,v 1.
10 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -42,7 +42,7 @@ static void DoWork ( aout_instance_t *, aout_buffer_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"
f
loat32 audio mixer"
)
);
set_description
(
_
(
"
F
loat32 audio mixer"
)
);
set_capability
(
"audio mixer"
,
10
);
set_callbacks
(
Create
,
NULL
);
vlc_module_end
();
...
...
modules/audio_mixer/spdif.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* spdif.c : dummy mixer for S/PDIF output (1 input only)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: spdif.c,v 1.
9 2003/03/30 18:14:36 gbazin
Exp $
* $Id: spdif.c,v 1.
10 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -42,7 +42,7 @@ static void DoWork ( aout_instance_t *, aout_buffer_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"
d
ummy spdif audio mixer"
)
);
set_description
(
_
(
"
D
ummy spdif audio mixer"
)
);
set_capability
(
"audio mixer"
,
1
);
set_callbacks
(
Create
,
NULL
);
vlc_module_end
();
...
...
modules/audio_mixer/trivial.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* trivial.c : trivial mixer plug-in (1 input, no downmixing)
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: trivial.c,v 1.1
3 2003/10/25 00:49:13 sam
Exp $
* $Id: trivial.c,v 1.1
4 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -42,7 +42,7 @@ static void DoWork ( aout_instance_t *, aout_buffer_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"
t
rivial audio mixer"
)
);
set_description
(
_
(
"
T
rivial audio mixer"
)
);
set_capability
(
"audio mixer"
,
1
);
set_callbacks
(
Create
,
NULL
);
vlc_module_end
();
...
...
modules/gui/skins2/commands/cmd_input.hpp
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* cmd_input.hpp
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: cmd_input.hpp,v 1.
2 2004/01/18 19:54:45 asmax
Exp $
* $Id: cmd_input.hpp,v 1.
3 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulière <ipkiss@via.ecp.fr>
...
...
@@ -28,9 +28,9 @@
#include "cmd_generic.hpp"
/// Commands to control the input
DEFINE_COMMAND
(
Play
,
"
play"
)
DEFINE_COMMAND
(
Play
,
"
Play"
)
DEFINE_COMMAND
(
Pause
,
"pause"
)
DEFINE_COMMAND
(
Stop
,
"
stop"
)
DEFINE_COMMAND
(
Stop
,
"
Stop"
)
DEFINE_COMMAND
(
Slower
,
"slower"
)
DEFINE_COMMAND
(
Faster
,
"faster"
)
...
...
modules/gui/skins2/parser/builder.cpp
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* builder.cpp
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: builder.cpp,v 1.
3 2004/01/25 11:44:19 asmax
Exp $
* $Id: builder.cpp,v 1.
4 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr>
...
...
@@ -103,7 +103,7 @@ Theme *Builder::build()
pBmp = m_pTheme->m_bitmaps[id].get(); \
if( pBmp == NULL ) \
{ \
msg_Err( getIntf(), "
Unknown B
itmap id: %s", id.c_str() ); \
msg_Err( getIntf(), "
unknown b
itmap id: %s", id.c_str() ); \
return; \
} \
}
...
...
@@ -152,7 +152,7 @@ void Builder::addLayout( const BuilderData::Layout &rData )
GenericWindow
*
pWin
=
m_pTheme
->
m_windows
[
rData
.
m_windowId
].
get
();
if
(
pWin
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown W
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown w
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
return
;
}
...
...
@@ -178,7 +178,7 @@ void Builder::addAnchor( const BuilderData::Anchor &rData )
GenericWindow
*
pWin
=
m_pTheme
->
m_windows
[
rData
.
m_windowId
].
get
();
if
(
pWin
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown W
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown w
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
return
;
}
...
...
@@ -203,7 +203,7 @@ void Builder::addButton( const BuilderData::Button &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
@@ -255,7 +255,7 @@ void Builder::addCheckbox( const BuilderData::Checkbox &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
@@ -310,14 +310,14 @@ void Builder::addImage( const BuilderData::Image &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
GenericWindow
*
pWindow
=
m_pTheme
->
m_windows
[
rData
.
m_windowId
].
get
();
if
(
pWindow
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown W
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown w
indow id: %s"
,
rData
.
m_windowId
.
c_str
()
);
return
;
}
...
...
@@ -357,7 +357,7 @@ void Builder::addText( const BuilderData::Text &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
@@ -397,7 +397,7 @@ void Builder::addRadialSlider( const BuilderData::RadialSlider &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
@@ -444,7 +444,7 @@ void Builder::addSlider( const BuilderData::Slider &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
@@ -500,7 +500,7 @@ void Builder::addList( const BuilderData::List &rData )
GenericLayout
*
pLayout
=
m_pTheme
->
m_layouts
[
rData
.
m_layoutId
].
get
();
if
(
pLayout
==
NULL
)
{
msg_Err
(
getIntf
(),
"
Unknown L
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
msg_Err
(
getIntf
(),
"
unknown l
ayout id: %s"
,
rData
.
m_layoutId
.
c_str
()
);
return
;
}
...
...
modules/gui/skins2/src/dialogs.cpp
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* dialogs.cpp
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: dialogs.cpp,v 1.
1 2004/01/03 23:31:33 asmax
Exp $
* $Id: dialogs.cpp,v 1.
2 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr>
...
...
@@ -169,9 +169,9 @@ void Dialogs::showChangeSkin()
p_arg
->
b_blocking
=
false
;
p_arg
->
psz_title
=
strdup
(
_
(
"Open a skin file"
)
);
p_arg
->
psz_title
=
strdup
(
_
(
"Open a skin file
.
"
)
);
p_arg
->
psz_extensions
=
strdup
(
"Skin files (*.vlt)|*.vlt|Skin files (*.xml)|*.xml|"
);
strdup
(
_
(
"Skin files (*.vlt)|*.vlt|Skin files (*.xml)|*.xml|"
)
);
p_arg
->
p_arg
=
getIntf
();
p_arg
->
pf_callback
=
showChangeSkinCB
;
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* skin_main.cpp
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: skin_main.cpp,v 1.
3 2004/01/25 13:59:33 asmax
Exp $
* $Id: skin_main.cpp,v 1.
4 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr>
...
...
@@ -212,7 +212,7 @@ static void Run( intf_thread_t *p_intf )
// Module descriptor
//---------------------------------------------------------------------------
#define DEFAULT_SKIN N_("Last skin used")
#define DEFAULT_SKIN_LONG N_("Select the path to the last skin used")
#define DEFAULT_SKIN_LONG N_("Select the path to the last skin used
.
")
vlc_module_begin
();
// XXX
...
...
modules/misc/dummy/dummy.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* dummy.c : dummy plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: dummy.c,v 1.1
2 2003/12/22 02:24:52 sam
Exp $
* $Id: dummy.c,v 1.1
3 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -55,7 +55,7 @@
#endif
vlc_module_begin
();
set_description
(
_
(
"
d
ummy interface function"
)
);
set_description
(
_
(
"
D
ummy interface function"
)
);
set_capability
(
"interface"
,
0
);
add_shortcut
(
"vlc"
);
set_callbacks
(
E_
(
OpenIntf
),
NULL
);
...
...
@@ -64,34 +64,34 @@ vlc_module_begin();
add_bool
(
"dummy-quiet"
,
0
,
NULL
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
VLC_FALSE
);
#endif
add_submodule
();
set_description
(
_
(
"
d
ummy access function"
)
);
set_description
(
_
(
"
D
ummy access function"
)
);
set_capability
(
"access"
,
0
);
set_callbacks
(
E_
(
OpenAccess
),
NULL
);
add_submodule
();
set_description
(
_
(
"
d
ummy demux function"
)
);
set_description
(
_
(
"
D
ummy demux function"
)
);
set_capability
(
"demux"
,
0
);
set_callbacks
(
E_
(
OpenDemux
),
E_
(
CloseDemux
)
);
add_submodule
();
set_description
(
_
(
"
d
ummy decoder function"
)
);
set_description
(
_
(
"
D
ummy decoder function"
)
);
set_capability
(
"decoder"
,
0
);
set_callbacks
(
E_
(
OpenDecoder
),
E_
(
CloseDecoder
)
);
add_bool
(
"dummy-save-es"
,
0
,
NULL
,
SAVE_TEXT
,
SAVE_LONGTEXT
,
VLC_FALSE
);
add_submodule
();
set_description
(
_
(
"
d
ummy encoder function"
)
);
set_description
(
_
(
"
D
ummy encoder function"
)
);
set_capability
(
"encoder"
,
0
);
set_callbacks
(
E_
(
OpenEncoder
),
E_
(
CloseEncoder
)
);
add_submodule
();
set_description
(
_
(
"
d
ummy audio output function"
)
);
set_description
(
_
(
"
D
ummy audio output function"
)
);
set_capability
(
"audio output"
,
1
);
set_callbacks
(
E_
(
OpenAudio
),
NULL
);
add_submodule
();
set_description
(
_
(
"
d
ummy video output function"
)
);
set_description
(
_
(
"
D
ummy video output function"
)
);
set_capability
(
"video output"
,
1
);
set_callbacks
(
E_
(
OpenVideo
),
NULL
);
add_category_hint
(
N_
(
"Video"
),
NULL
,
VLC_FALSE
);
add_string
(
"dummy-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
VLC_FALSE
);
add_submodule
();
set_description
(
_
(
"
d
ummy font renderer function"
)
);
set_description
(
_
(
"
D
ummy font renderer function"
)
);
set_capability
(
"text renderer"
,
1
);
set_callbacks
(
E_
(
OpenRenderer
),
NULL
);
vlc_module_end
();
...
...
modules/misc/dummy/interface.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* intf_dummy.c: dummy interface plugin
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: interface.c,v 1.
3 2003/02/20 16:07:38 gbazin
Exp $
* $Id: interface.c,v 1.
4 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -49,7 +49,7 @@ int E_(OpenIntf) ( vlc_object_t *p_this )
CONSOLE_INTRO_MSG
;
#endif
msg_Info
(
p_intf
,
_
(
"Using the dummy interface plugin..."
)
);
msg_Info
(
p_intf
,
"Using the dummy interface module..."
);
p_intf
->
pf_run
=
Run
;
...
...
modules/misc/logger/logger.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* logger.c : file logging plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: logger.c,v 1.
9 2003/11/05 00:39:16 gbazin
Exp $
* $Id: logger.c,v 1.
10 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -85,15 +85,15 @@ static char *mode_list[] = { "text", "html" };
static
char
*
mode_list_text
[]
=
{
N_
(
"Text"
),
N_
(
"Html"
)
};
#define LOGMODE_TEXT N_("Log format")
#define LOGMODE_LONGTEXT N_("Specify the log format. Available choices are \"text\" (default) and \"html\"")
#define LOGMODE_LONGTEXT N_("Specify the log format. Available choices are \"text\" (default) and \"html\"
.
")
vlc_module_begin
();
add_category_hint
(
N_
(
"Miscellaneous"
),
NULL
,
VLC_FALSE
);
add_file
(
"logfile"
,
NULL
,
NULL
,
N_
(
"
l
og filename"
),
N_
(
"Specify the log filename."
),
VLC_FALSE
);
add_file
(
"logfile"
,
NULL
,
NULL
,
N_
(
"
L
og filename"
),
N_
(
"Specify the log filename."
),
VLC_FALSE
);
add_string
(
"logmode"
,
"text"
,
NULL
,
LOGMODE_TEXT
,
LOGMODE_LONGTEXT
,
VLC_FALSE
);
change_string_list
(
mode_list
,
mode_list_text
,
0
);
set_description
(
_
(
"
f
ile logging interface"
)
);
set_description
(
_
(
"
F
ile logging interface"
)
);
set_capability
(
"interface"
,
0
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
...
...
@@ -107,7 +107,7 @@ static int Open( vlc_object_t *p_this )
char
*
psz_mode
,
*
psz_file
;
CONSOLE_INTRO_MSG
;
msg_Info
(
p_intf
,
_
(
"Using the logger interface plugin..."
)
);
msg_Info
(
p_intf
,
"Using the logger interface module..."
);
/* Allocate instance and initialize some members */
p_intf
->
p_sys
=
(
intf_sys_t
*
)
malloc
(
sizeof
(
intf_sys_t
)
);
...
...
@@ -156,7 +156,7 @@ static int Open( vlc_object_t *p_this )
break
;
}
msg_Warn
(
p_intf
,
"
no log filename provided, using `%s'"
,
psz_file
);
msg_Warn
(
p_intf
,
no
log
filename
provided
,
using
`
%
s
'
", psz_file );
}
/* Open the log file and remove any buffering for the stream */
...
...
modules/misc/network/ipv6.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* ipv6.c: IPv6 network abstraction layer
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: ipv6.c,v 1.1
4 2003/07/31 23:44:49 fenrir
Exp $
* $Id: ipv6.c,v 1.1
5 2004/01/25 17:20:19 kuehne
Exp $
*
* Authors: Alexis Guillard <alexis.guillard@bt.com>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -188,7 +188,7 @@ static int BuildAddr( vlc_object_t * p_this, struct sockaddr_in6 * p_socket,
/* We have a fqdn, try to find its address */
if
(
(
p_hostent
=
gethostbyname2
(
psz_address
,
AF_INET6
))
==
NULL
)
{
msg_Warn
(
p_this
,
"
ip
v6 error: unknown host %s"
,
psz_address
);
msg_Warn
(
p_this
,
"
IP
v6 error: unknown host %s"
,
psz_address
);
free
(
psz_backup
);
return
(
-
1
);
}
...
...
@@ -210,7 +210,7 @@ static int BuildAddr( vlc_object_t * p_this, struct sockaddr_in6 * p_socket,
_freeaddrinfo
(
res
);
#else
msg_Warn
(
p_this
,
"
ip
v6 error: IPv6 address %s is invalid"
,
msg_Warn
(
p_this
,
"
IP
v6 error: IPv6 address %s is invalid"
,
psz_address
);
free
(
psz_backup
);
return
(
-
1
);
...
...
@@ -291,7 +291,7 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
}
else
if
(
i_opt
<
0x80000
)
{
msg_Warn
(
p_this
,
"
s
ocket buffer size is 0x%x instead of 0x%x"
,
msg_Warn
(
p_this
,
"
S
ocket buffer size is 0x%x instead of 0x%x"
,
i_opt
,
0x80000
);
}
...
...
@@ -334,7 +334,7 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
if
(
setsockopt
(
i_handle
,
SOL_SOCKET
,
SO_BROADCAST
,
(
void
*
)
&
i_opt
,
sizeof
(
i_opt
)
)
==
-
1
)
{
msg_Warn
(
p_this
,
"
ip
v6 warning: cannot configure socket "
msg_Warn
(
p_this
,
"
IP
v6 warning: cannot configure socket "
"(SO_BROADCAST: %s)"
,
strerror
(
errno
)
);
}
}
...
...
modules/video_chroma/i420_ymga.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* i420_ymga.c : YUV to YUV conversion module for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: i420_ymga.c,v 1.
2 2003/08/29 18:58:05 fenrir
Exp $
* $Id: i420_ymga.c,v 1.
3 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -45,7 +45,7 @@ static void I420_YMGA ( vout_thread_t *, picture_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
#if defined (MODULE_NAME_IS_i420_ymga)
set_description
(
_
(
"
c
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_description
(
_
(
"
C
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_capability
(
"chroma"
,
80
);
#elif defined (MODULE_NAME_IS_i420_ymga_mmx)
set_description
(
_
(
"MMX conversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
...
...
modules/video_chroma/i420_yuy2.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* i420_yuy2.c : YUV to YUV conversion module for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: i420_yuy2.c,v 1.
4 2003/10/25 00:49:14 sam
Exp $
* $Id: i420_yuy2.c,v 1.
5 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -64,7 +64,7 @@ static uint64_t i_80w;
*****************************************************************************/
vlc_module_begin
();
#if defined (MODULE_NAME_IS_i420_yuy2)
set_description
(
_
(
"
c
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_description
(
_
(
"
C
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_capability
(
"chroma"
,
80
);
#elif defined (MODULE_NAME_IS_i420_yuy2_mmx)
set_description
(
_
(
"MMX conversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
...
...
modules/video_chroma/i422_yuy2.c
View file @
82a67660
...
...
@@ -2,7 +2,7 @@
* i422_yuy2.c : YUV to YUV conversion module for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: i422_yuy2.c,v 1.
4 2003/11/06 17:08:12 nitrox
Exp $
* $Id: i422_yuy2.c,v 1.
5 2004/01/25 17:20:18 kuehne
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -60,7 +60,7 @@ static void I422_YV12 ( vout_thread_t *, picture_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
#if defined (MODULE_NAME_IS_i422_yuy2)
set_description
(
_
(
"
c
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_description
(
_
(
"
C
onversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
set_capability
(
"chroma"
,
80
);
#elif defined (MODULE_NAME_IS_i422_yuy2_mmx)
set_description
(
_
(
"MMX conversions from "
SRC_FOURCC
" to "
DEST_FOURCC
)
);
...
...
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