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
6fd538c3
Commit
6fd538c3
authored
Jul 11, 2009
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Typos
parent
ac466e0f
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
11 additions
and
11 deletions
+11
-11
modules/access/screen/screen.c
modules/access/screen/screen.c
+1
-1
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+1
-1
modules/demux/mkv/matroska_segment.cpp
modules/demux/mkv/matroska_segment.cpp
+1
-1
modules/video_filter/dynamicoverlay/dynamicoverlay_commands.c
...les/video_filter/dynamicoverlay/dynamicoverlay_commands.c
+1
-1
modules/video_filter/marq.c
modules/video_filter/marq.c
+1
-1
modules/video_filter/rss.c
modules/video_filter/rss.c
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+3
-3
src/network/tcp.c
src/network/tcp.c
+1
-1
src/stream_output/sap.c
src/stream_output/sap.c
+1
-1
No files found.
modules/access/screen/screen.c
View file @
6fd538c3
...
...
@@ -77,7 +77,7 @@
#ifdef SCREEN_MOUSE
#define MOUSE_TEXT N_( "Mouse pointer image" )
#define MOUSE_LONGTEXT N_( \
"If specifed, will use the image to draw the mouse pointer on the " \
"If specif
i
ed, will use the image to draw the mouse pointer on the " \
"capture." )
#endif
...
...
modules/audio_output/alsa.c
View file @
6fd538c3
...
...
@@ -267,7 +267,7 @@ static void Probe( aout_instance_t * p_aout,
if
(
val
.
i_int
<=
0
)
{
/* Probe() has failed. */
msg_Dbg
(
p_aout
,
"failed to find a us
e
able alsa configuration"
);
msg_Dbg
(
p_aout
,
"failed to find a usable alsa configuration"
);
var_Destroy
(
p_aout
,
"audio-device"
);
return
;
}
...
...
modules/demux/mkv/matroska_segment.cpp
View file @
6fd538c3
...
...
@@ -737,7 +737,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
}
else
{
msg_Err
(
&
sys
.
demuxer
,
"inconsist
a
nt theora extradata"
);
msg_Err
(
&
sys
.
demuxer
,
"inconsist
e
nt theora extradata"
);
}
}
else
{
...
...
modules/video_filter/dynamicoverlay/dynamicoverlay_commands.c
View file @
6fd538c3
...
...
@@ -442,7 +442,7 @@ static int exec_DataSharedMem( filter_t *p_filter,
if
(
(
p_params
->
i_height
!=
1
)
||
(
p_params
->
i_width
<
1
)
)
{
msg_Err
(
p_filter
,
"Invalid width and/or height. when specifing text height "
"Invalid width and/or height. when specif
y
ing text height "
"must be 1 and width the number of bytes in the string, "
"including the null terminator"
);
return
VLC_EGENERIC
;
...
...
modules/video_filter/marq.c
View file @
6fd538c3
...
...
@@ -111,7 +111,7 @@ struct filter_sys_t
"0 (remains forever).")
#define REFRESH_TEXT N_("Refresh period in ms")
#define REFRESH_LONGTEXT N_("Number of milliseconds between string updates. " \
"This is mainly useful
l
when using meta data " \
"This is mainly useful when using meta data " \
"or time format string sequences.")
#define OPACITY_TEXT N_("Opacity")
#define OPACITY_LONGTEXT N_("Opacity (inverse of transparency) of " \
...
...
modules/video_filter/rss.c
View file @
6fd538c3
...
...
@@ -126,7 +126,7 @@ struct filter_sys_t
};
#define MSG_TEXT N_("Feed URLs")
#define MSG_LONGTEXT N_("RSS/Atom feed '|' (pipe) sep
e
rated URLs.")
#define MSG_LONGTEXT N_("RSS/Atom feed '|' (pipe) sep
a
rated URLs.")
#define SPEED_TEXT N_("Speed of feeds")
#define SPEED_LONGTEXT N_("Speed of the RSS/Atom feeds in microseconds (bigger is slower).")
#define LENGTH_TEXT N_("Max length")
...
...
src/libvlc-module.c
View file @
6fd538c3
...
...
@@ -531,12 +531,12 @@ static const char *const ppsz_pos_descriptions[] =
#define CUSTOM_CROP_RATIOS_TEXT N_("Custom crop ratios list")
#define CUSTOM_CROP_RATIOS_LONGTEXT N_( \
"Comma sep
e
rated list of crop ratios which will be added in the " \
"Comma sep
a
rated list of crop ratios which will be added in the " \
"interface's crop ratios list.")
#define CUSTOM_ASPECT_RATIOS_TEXT N_("Custom aspect ratios list")
#define CUSTOM_ASPECT_RATIOS_LONGTEXT N_( \
"Comma sep
e
rated list of aspect ratios which will be added in the " \
"Comma sep
a
rated list of aspect ratios which will be added in the " \
"interface's aspect ratio list.")
#define HDTV_FIX_TEXT N_("Fix HDTV height")
...
...
@@ -630,7 +630,7 @@ static const char *const ppsz_clock_descriptions[] =
#define MIFACE_ADDR_TEXT N_("IPv4 multicast output interface address")
#define MIFACE_ADDR_LONGTEXT N_( \
"IPv4 adress for the default multicast interface. This overrides " \
"IPv4 ad
d
ress for the default multicast interface. This overrides " \
"the routing table.")
#define DSCP_TEXT N_("DiffServ Code Point")
...
...
src/network/tcp.c
View file @
6fd538c3
...
...
@@ -422,7 +422,7 @@ static int SocksNegotiate( vlc_object_t *p_obj,
msg_Err
(
p_obj
,
"socks: unsupported authentication method %x"
,
buffer
[
0
]
);
else
msg_Err
(
p_obj
,
"socks: authenti
fi
cation needed"
);
msg_Err
(
p_obj
,
"socks: authentication needed"
);
return
VLC_EGENERIC
;
}
...
...
src/stream_output/sap.c
View file @
6fd538c3
...
...
@@ -373,7 +373,7 @@ int SAP_Add (sap_handler_t *p_sap, session_descriptor_t *p_session)
/* SAPv1, not encrypted, not compressed */
psz_head
[
0
]
=
0x20
;
psz_head
[
1
]
=
0x00
;
/* No authenti
fi
cation length */
psz_head
[
1
]
=
0x00
;
/* No authentication length */
i_hash
=
mdate
();
psz_head
[
2
]
=
i_hash
>>
8
;
/* Msg id hash */
...
...
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