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
4f15591e
Commit
4f15591e
authored
Mar 31, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Access/*: Second lecture (refs #438)
parent
50ed0055
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
65 additions
and
64 deletions
+65
-64
modules/access/cdda.c
modules/access/cdda.c
+4
-4
modules/access/cdda/access.c
modules/access/cdda/access.c
+4
-4
modules/access/cdda/callback.c
modules/access/cdda/callback.c
+7
-7
modules/access/cdda/cdda.c
modules/access/cdda/cdda.c
+5
-5
modules/access/directory.c
modules/access/directory.c
+5
-5
modules/access/dshow/crossbar.cpp
modules/access/dshow/crossbar.cpp
+2
-2
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+12
-12
modules/access/dv.c
modules/access/dv.c
+1
-1
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
modules/access/dvdnav.c
modules/access/dvdnav.c
+1
-1
modules/access/dvdread.c
modules/access/dvdread.c
+2
-2
modules/access/fake.c
modules/access/fake.c
+1
-1
modules/access/file.c
modules/access/file.c
+1
-1
modules/access/ftp.c
modules/access/ftp.c
+1
-1
modules/access/gnomevfs.c
modules/access/gnomevfs.c
+1
-1
modules/access/http.c
modules/access/http.c
+3
-3
modules/access/mms/mms.c
modules/access/mms/mms.c
+1
-1
modules/access/mms/mmsh.c
modules/access/mms/mmsh.c
+1
-1
modules/access/mms/mmstu.c
modules/access/mms/mmstu.c
+3
-3
modules/access/rtsp/access.c
modules/access/rtsp/access.c
+1
-1
modules/access/screen/screen.c
modules/access/screen/screen.c
+1
-1
modules/access/smb.c
modules/access/smb.c
+1
-1
modules/access/tcp.c
modules/access/tcp.c
+1
-1
modules/access/udp.c
modules/access/udp.c
+2
-2
modules/access/v4l/v4l.c
modules/access/v4l/v4l.c
+1
-1
modules/access/vcd/vcd.c
modules/access/vcd/vcd.c
+2
-1
No files found.
modules/access/cdda.c
View file @
4f15591e
...
...
@@ -68,7 +68,7 @@ vlc_module_begin();
add_bool
(
"cdda-separate-tracks"
,
VLC_TRUE
,
NULL
,
NULL
,
NULL
,
VLC_TRUE
);
add_integer
(
"cdda-track"
,
-
1
,
NULL
,
NULL
,
NULL
,
VLC_TRUE
);
add_string
(
"cddb-server"
,
"freedb.freedb.org"
,
NULL
,
N_
(
"CDDB Server"
),
N_
(
"Adress of the CDDB server to use."
),
N_
(
"CDDB Server"
),
N_
(
"Ad
d
ress of the CDDB server to use."
),
VLC_TRUE
);
add_integer
(
"cddb-port"
,
8880
,
NULL
,
N_
(
"CDDB port"
),
N_
(
"CDDB Server port to use."
),
...
...
@@ -205,7 +205,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
i_track
=
i_track
-
1
;
}
msg_Dbg
(
p_access
,
"
Separate items : %i - S
ingle track : %i"
,
msg_Dbg
(
p_access
,
"
separate items : %i - s
ingle track : %i"
,
p_sys
->
b_separate_items
,
p_sys
->
b_single_track
);
if
(
p_sys
->
b_separate_items
)
...
...
@@ -698,7 +698,7 @@ static void GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors )
if
(
!
p_access
->
p_sys
->
p_disc
)
{
msg_Err
(
p_access
,
"
U
nable to create CDDB disc structure."
);
msg_Err
(
p_access
,
"
u
nable to create CDDB disc structure."
);
goto
cddb_end
;
}
...
...
@@ -725,7 +725,7 @@ static void GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors )
if
(
i_matches
>
0
)
{
if
(
i_matches
>
1
)
msg_Warn
(
p_access
,
"
F
ound %d matches in CDDB. Using first one."
,
msg_Warn
(
p_access
,
"
f
ound %d matches in CDDB. Using first one."
,
i_matches
);
cddb_read
(
p_cddb
,
p_access
->
p_sys
->
p_disc
);
...
...
modules/access/cdda/access.c
View file @
4f15591e
...
...
@@ -100,7 +100,7 @@ cdio_log_handler (cdio_log_level_t level, const char message[])
break
;
default:
msg_Warn
(
p_cdda_input
,
message
,
"
T
he above message had unknown cdio log level"
,
"
t
he above message had unknown cdio log level"
,
level
);
}
return
;
...
...
@@ -284,7 +284,7 @@ static block_t * CDDAReadBlocks( access_t * p_access )
p_block
=
block_New
(
p_access
,
i_blocks
*
CDIO_CD_FRAMESIZE_RAW
);
if
(
!
p_block
)
{
msg_Err
(
p_access
,
"
C
annot get a new block of size: %i"
,
msg_Err
(
p_access
,
"
c
annot get a new block of size: %i"
,
i_blocks
*
CDIO_CD_FRAMESIZE_RAW
);
return
NULL
;
}
...
...
@@ -679,7 +679,7 @@ CDDAOpen( vlc_object_t *p_this )
||
p_cdda
->
i_blocks_per_read
>
MAX_BLOCKS_PER_READ
)
{
msg_Warn
(
p_cdda_input
,
"
N
umber of blocks (%d) has to be between %d and %d. "
"
n
umber of blocks (%d) has to be between %d and %d. "
"Using %d."
,
p_cdda
->
i_blocks_per_read
,
MIN_BLOCKS_PER_READ
,
MAX_BLOCKS_PER_READ
,
...
...
@@ -753,7 +753,7 @@ CDDAOpen( vlc_object_t *p_this )
cdio_cddap_verbose_set
(
p_cdda
->
paranoia_cd
,
CDDA_MESSAGE_PRINTIT
,
CDDA_MESSAGE_PRINTIT
);
if
(
0
!=
cdio_cddap_open
(
p_cdda
->
paranoia_cd
)
)
{
msg_Warn
(
p_cdda_input
,
"
U
nable to get paranoia support - "
msg_Warn
(
p_cdda_input
,
"
u
nable to get paranoia support - "
"continuing without it."
);
p_cdda
->
e_paranoia
=
paranoia_none
;
}
else
{
...
...
modules/access/cdda/callback.c
View file @
4f15591e
...
...
@@ -36,7 +36,7 @@ CDDADebugCB ( vlc_object_t *p_this, const char *psz_name,
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld debug (x%0x) %d, new debug (x%0x) %d"
,
msg_Dbg
(
p_cdda_input
,
"
o
ld debug (x%0x) %d, new debug (x%0x) %d"
,
p_cdda
->
i_debug
,
p_cdda
->
i_debug
,
val
.
i_int
,
val
.
i_int
);
}
p_cdda
->
i_debug
=
val
.
i_int
;
...
...
@@ -58,7 +58,7 @@ CDDBEnabledCB ( vlc_object_t *p_this, const char *psz_name,
#ifdef HAVE_LIBCDDB
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld CDDB Enabled (x%0x) %d, new (x%0x) %d"
,
msg_Dbg
(
p_cdda_input
,
"
o
ld CDDB Enabled (x%0x) %d, new (x%0x) %d"
,
p_cdda
->
b_cddb_enabled
,
p_cdda
->
b_cddb_enabled
,
val
.
b_bool
,
val
.
b_bool
);
}
...
...
@@ -79,7 +79,7 @@ CDTextEnabledCB ( vlc_object_t *p_this, const char *psz_name,
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld CDText Enabled %d, new %d"
,
msg_Dbg
(
p_cdda_input
,
"
o
ld CDText Enabled %d, new %d"
,
p_cdda
->
b_cdtext
,
val
.
b_bool
);
}
p_cdda
->
b_cdtext
=
val
.
b_bool
;
...
...
@@ -99,7 +99,7 @@ CDDANavModeCB( vlc_object_t *p_this, const char *psz_name,
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld Navigation Mode Enabled %d, new %d"
,
"
o
ld Navigation Mode Enabled %d, new %d"
,
p_cdda
->
b_nav_mode
,
val
.
b_bool
);
}
p_cdda
->
b_nav_mode
=
val
.
b_bool
;
...
...
@@ -119,7 +119,7 @@ CDTextPreferCB ( vlc_object_t *p_this, const char *psz_name,
#ifdef HAVE_LIBCDDB
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld CDText Prefer (x%0x) %d, new (x%0x) %d"
,
msg_Dbg
(
p_cdda_input
,
"
o
ld CDText Prefer (x%0x) %d, new (x%0x) %d"
,
p_cdda
->
b_cdtext_prefer
,
p_cdda
->
b_cdtext_prefer
,
val
.
b_bool
,
val
.
b_bool
);
}
...
...
@@ -140,7 +140,7 @@ CDDABlocksPerReadCB ( vlc_object_t *p_this, const char *psz_name,
if
(
p_cdda
->
i_debug
&
(
INPUT_DBG_CALL
|
INPUT_DBG_EXT
))
{
msg_Dbg
(
p_cdda_input
,
"
O
ld blocks per read: %d, new %d"
,
msg_Dbg
(
p_cdda_input
,
"
o
ld blocks per read: %d, new %d"
,
p_cdda
->
i_blocks_per_read
,
val
.
i_int
);
}
...
...
@@ -150,7 +150,7 @@ CDDABlocksPerReadCB ( vlc_object_t *p_this, const char *psz_name,
else
{
msg_Warn
(
p_cdda_input
,
"
N
umber of blocks (%d) has to be between %d and %d. No change."
,
"
n
umber of blocks (%d) has to be between %d and %d. No change."
,
val
.
i_int
,
MIN_BLOCKS_PER_READ
,
MAX_BLOCKS_PER_READ
);
}
return
VLC_SUCCESS
;
...
...
modules/access/cdda/cdda.c
View file @
4f15591e
...
...
@@ -56,11 +56,11 @@ static char *psz_paranoia_list_text[] = { N_("none"), N_("overlap"),
"libcddb (0x100) 256\n" )
#define CACHING_LONGTEXT N_( \
"
Allows you to modify the default c
aching value for CDDA streams. This " \
"
C
aching value for CDDA streams. This " \
"value should be set in millisecond units." )
#define BLOCKS_PER_READ_LONGTEXT N_( \
"
Allows you to specify h
ow many CD blocks to get on a single CD read. " \
"
H
ow many CD blocks to get on a single CD read. " \
"Generally on newer/faster CDs, this increases throughput at the " \
"expense of a little more memory usage and initial delay. SCSI-MMC " \
"limitations generally don't allow for more than 25 blocks per access.")
...
...
@@ -121,7 +121,7 @@ vlc_module_begin();
/* Configuration options */
add_integer
(
MODULE_STRING
"-debug"
,
0
,
CDDADebugCB
,
N_
(
"
If nonzero, this gives additional debug information.
"
),
N_
(
"
Additional debug
"
),
DEBUG_LONGTEXT
,
VLC_TRUE
);
add_integer
(
MODULE_STRING
"-caching"
,
...
...
@@ -158,7 +158,7 @@ vlc_module_begin();
NULL
,
#endif
N_
(
"Use Navigation-style playback?"
),
N_
(
"
If set, t
racks are navigated via Navagation rather than "
N_
(
"
T
racks are navigated via Navagation rather than "
"a playlist entries"
),
VLC_FALSE
);
...
...
@@ -178,7 +178,7 @@ vlc_module_begin();
CDDB_TITLE_FMT_LONGTEXT
,
VLC_TRUE
);
add_bool
(
MODULE_STRING
"-cddb-enabled"
,
VLC_TRUE
,
CDDBEnabledCB
,
N_
(
"
Do CDDB lookups?
"
),
N_
(
"
CDDB lookups
"
),
N_
(
"If set, lookup CD-DA track information using the CDDB "
"protocol"
),
VLC_FALSE
);
...
...
modules/access/directory.c
View file @
4f15591e
...
...
@@ -437,7 +437,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
i_dir_content
=
scandir
(
psz_name
,
&
pp_dir_content
,
Filter
,
alphasort
);
if
(
i_dir_content
==
-
1
)
{
msg_Warn
(
p_playlist
,
"
F
ailed to read directory"
);
msg_Warn
(
p_playlist
,
"
f
ailed to read directory"
);
return
VLC_EGENERIC
;
}
else
if
(
i_dir_content
<=
0
)
...
...
@@ -479,7 +479,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
if
(
lstat
(
psz_uri
,
&
stat_data
)
||
S_ISLNK
(
stat_data
.
st_mode
)
)
{
msg_Dbg
(
p_playlist
,
"
S
kipping directory symlink %s"
,
msg_Dbg
(
p_playlist
,
"
s
kipping directory symlink %s"
,
psz_uri
);
free
(
psz_uri
);
continue
;
...
...
@@ -487,14 +487,14 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
#endif
if
(
i_mode
==
MODE_NONE
)
{
msg_Dbg
(
p_playlist
,
"
S
kipping subdirectory %s"
,
psz_uri
);
msg_Dbg
(
p_playlist
,
"
s
kipping subdirectory %s"
,
psz_uri
);
free
(
psz_uri
);
continue
;
}
else
if
(
i_mode
==
MODE_EXPAND
)
{
char
*
psz_newname
,
*
psz_tmp
;
msg_Dbg
(
p_playlist
,
"
R
eading subdirectory %s"
,
psz_uri
);
msg_Dbg
(
p_playlist
,
"
r
eading subdirectory %s"
,
psz_uri
);
psz_tmp
=
FromLocale
(
p_dir_content
->
d_name
);
psz_newname
=
vlc_fix_readdir_charset
(
...
...
@@ -537,7 +537,7 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
}
if
(
a
<
i_extensions
)
{
msg_Dbg
(
p_playlist
,
"
I
gnoring file %s"
,
psz_uri
);
msg_Dbg
(
p_playlist
,
"
i
gnoring file %s"
,
psz_uri
);
free
(
psz_uri
);
continue
;
}
...
...
modules/access/dshow/crossbar.cpp
View file @
4f15591e
...
...
@@ -208,7 +208,7 @@ HRESULT FindCrossbarRoutes( vlc_object_t *p_this, access_sys_t *p_sys,
// remember connector type
physicalType
=
inputPinPhysicalType
;
msg_Dbg
(
p_this
,
"
Found Existing Route F
or ouput %ld (type %ld) to input %ld (type %ld)"
,
msg_Dbg
(
p_this
,
"
found existing route f
or ouput %ld (type %ld) to input %ld (type %ld)"
,
outputPinIndex
,
outputPinPhysicalType
,
inputPinIndex
,
inputPinPhysicalType
);
...
...
@@ -259,7 +259,7 @@ HRESULT FindCrossbarRoutes( vlc_object_t *p_this, access_sys_t *p_sys,
p_sys
->
crossbar_routes
[
depth
].
AudioInputIndex
=
inputPinIndexRelated
;
p_sys
->
crossbar_routes
[
depth
].
AudioOutputIndex
=
outputPinIndexRelated
;
msg_Dbg
(
p_this
,
"
Crossbar at depth %d, Found Route F
or "
msg_Dbg
(
p_this
,
"
crossbar at depth %d, found route f
or "
"ouput %ld (type %ld) to input %ld (type %ld)"
,
depth
,
outputPinIndex
,
outputPinPhysicalType
,
inputPinIndex
,
inputPinPhysicalType
);
...
...
modules/access/dshow/dshow.cpp
View file @
4f15591e
...
...
@@ -78,7 +78,7 @@ static char *ppsz_tuner_input_text[] =
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for DirectShow streams. " \
"
C
aching value for DirectShow streams. " \
"This value should be set in millisecondss." )
#define VDEV_TEXT N_("Video device name")
#define VDEV_LONGTEXT N_( \
...
...
@@ -89,7 +89,7 @@ static char *ppsz_tuner_input_text[] =
#define ADEV_LONGTEXT N_( \
"Name of the audio device that will be used by the " \
"DirectShow plugin. If you don't specify anything, the default device " \
"will be used.")
"will be used.
You can specify a standard size (cif, d1, ...) or <width>x<height>
")
#define SIZE_TEXT N_("Video size")
#define SIZE_LONGTEXT N_( \
"Size of the video that will be displayed by the " \
...
...
@@ -102,7 +102,7 @@ static char *ppsz_tuner_input_text[] =
#define FPS_TEXT N_("Video input frame rate")
#define FPS_LONGTEXT N_( \
"Force the DirectShow video input to use a specific frame rate" \
"(eg. 0 means default, 25, 29.97, 50, 59.94, etc.)"
)
"(eg. 0 means default, 25, 29.97, 50, 59.94, etc.)"
#define CONFIG_TEXT N_("Device properties")
#define CONFIG_LONGTEXT N_( \
"Show the properties dialog of the selected device before starting the " \
...
...
@@ -189,16 +189,16 @@ vlc_module_begin();
change_integer_list
(
pi_tuner_input
,
ppsz_tuner_input_text
,
0
);
add_integer
(
"dshow-video-input"
,
-
1
,
NULL
,
VIDEO_IN_TEXT
,
VIDEO_IN_LONGTEXT
,
VLC_TRUE
);
VIDEO_IN_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"dshow-audio-input"
,
-
1
,
NULL
,
AUDIO_IN_TEXT
,
AUDIO_IN_LONGTEXT
,
VLC_TRUE
);
AUDIO_IN_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"dshow-video-output"
,
-
1
,
NULL
,
VIDEO_OUT_TEXT
,
VIDEO_OUT_LONGTEXT
,
VLC_TRUE
);
VIDEO_OUT_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"dshow-audio-output"
,
-
1
,
NULL
,
AUDIO_OUT_TEXT
,
AUDIO_OUT_LONGTEXT
,
VLC_TRUE
);
AUDIO_OUT_LONGTEXT
,
VLC_TRUE
);
add_shortcut
(
"dshow"
);
set_capability
(
"access_demux"
,
0
);
...
...
@@ -320,7 +320,7 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
static
struct
{
char
*
psz_size
;
int
i_width
;
int
i_height
;}
size_table
[]
=
{
{
"subqcif"
,
128
,
96
},
{
"qsif"
,
160
,
120
},
{
"qcif"
,
176
,
144
},
{
"sif"
,
320
,
240
},
{
"cif"
,
352
,
288
},
{
"
cif
"
,
640
,
480
},
{
"sif"
,
320
,
240
},
{
"cif"
,
352
,
288
},
{
"
d1
"
,
640
,
480
},
{
0
,
0
,
0
},
};
...
...
@@ -1849,7 +1849,7 @@ static void ShowDeviceProperties( vlc_object_t *p_this,
vlc_bool_t
b_audio
)
{
HRESULT
hr
;
msg_Dbg
(
p_this
,
"
C
onfiguring Device Properties"
);
msg_Dbg
(
p_this
,
"
c
onfiguring Device Properties"
);
/*
* Video or audio capture filter page
...
...
@@ -1863,7 +1863,7 @@ static void ShowDeviceProperties( vlc_object_t *p_this,
{
IAMStreamConfig
*
p_SC
;
msg_Dbg
(
p_this
,
"
S
howing WDM Audio Configuration Pages"
);
msg_Dbg
(
p_this
,
"
s
howing WDM Audio Configuration Pages"
);
hr
=
p_graph
->
FindInterface
(
&
PIN_CATEGORY_CAPTURE
,
&
MEDIATYPE_Audio
,
p_device_filter
,
...
...
@@ -1895,7 +1895,7 @@ static void ShowDeviceProperties( vlc_object_t *p_this,
{
IAMStreamConfig
*
p_SC
;
msg_Dbg
(
p_this
,
"
S
howing WDM Video Configuration Pages"
);
msg_Dbg
(
p_this
,
"
s
howing WDM Video Configuration Pages"
);
hr
=
p_graph
->
FindInterface
(
&
PIN_CATEGORY_CAPTURE
,
&
MEDIATYPE_Interleaved
,
p_device_filter
,
...
...
@@ -1928,7 +1928,7 @@ static void ShowTunerProperties( vlc_object_t *p_this,
vlc_bool_t
b_audio
)
{
HRESULT
hr
;
msg_Dbg
(
p_this
,
"
C
onfiguring Tuner Properties"
);
msg_Dbg
(
p_this
,
"
c
onfiguring Tuner Properties"
);
if
(
!
p_graph
||
b_audio
)
return
;
...
...
modules/access/dv.c
View file @
4f15591e
...
...
@@ -67,7 +67,7 @@ static int Control( access_t *, int, va_list );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for DV streams. This" \
"
C
aching value for DV streams. This" \
"value should be set in milliseconds." )
vlc_module_begin
();
...
...
modules/access/dvb/access.c
View file @
4f15591e
...
...
@@ -70,7 +70,7 @@ static void Close( vlc_object_t *p_this );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for DVB streams. This " \
"
C
aching value for DVB streams. This " \
"value should be set in milliseconds." )
#define ADAPTER_TEXT N_("Adapter card to tune")
...
...
modules/access/dvdnav.c
View file @
4f15591e
...
...
@@ -62,7 +62,7 @@
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for DVDs. This "\
"
C
aching value for DVDs. This "\
"value should be set in milliseconds." )
#define MENU_TEXT N_("Start directly in menu")
#define MENU_LONGTEXT N_( \
...
...
modules/access/dvdread.c
View file @
4f15591e
...
...
@@ -56,11 +56,11 @@
*****************************************************************************/
#define ANGLE_TEXT N_("DVD angle")
#define ANGLE_LONGTEXT N_( \
"
Allows you to select the d
efault DVD angle." )
"
D
efault DVD angle." )
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for DVDs. " \
"
C
aching value for DVDs. " \
"This value should be set in milliseconds." )
#define CSSMETHOD_TEXT N_("Method used by libdvdcss for decryption")
...
...
modules/access/fake.c
View file @
4f15591e
...
...
@@ -39,7 +39,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for fake streams. This " \
"
C
aching value for fake streams. This " \
"value should be set in milliseconds." )
#define FPS_TEXT N_("Framerate")
#define FPS_LONGTEXT N_( \
...
...
modules/access/file.c
View file @
4f15591e
...
...
@@ -79,7 +79,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for files. This " \
"
C
aching value for files. This " \
"value should be set in milliseconds." )
#define CAT_TEXT N_("Concatenate with additional files")
#define CAT_LONGTEXT N_( \
...
...
modules/access/ftp.c
View file @
4f15591e
...
...
@@ -41,7 +41,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for FTP streams. This " \
"
C
aching value for FTP streams. This " \
"value should be set in milliseconds." )
#define USER_TEXT N_("FTP user name")
#define USER_LONGTEXT N_("User name that will " \
...
...
modules/access/gnomevfs.c
View file @
4f15591e
...
...
@@ -43,7 +43,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for GnomeVFS streams."\
"
C
aching value for GnomeVFS streams."\
"This value should be set in milliseconds." )
vlc_module_begin
();
...
...
modules/access/http.c
View file @
4f15591e
...
...
@@ -52,7 +52,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for HTTP streams. This " \
"
C
aching value for HTTP streams. This " \
"value should be set in milliseconds." )
#define AGENT_TEXT N_("HTTP user agent")
...
...
@@ -288,7 +288,7 @@ connect:
{
char
*
psz_login
=
NULL
;
char
*
psz_password
=
NULL
;
int
i_ret
;
msg_Dbg
(
p_access
,
"
A
uthentication failed"
);
msg_Dbg
(
p_access
,
"
a
uthentication failed"
);
i_ret
=
intf_UserLoginPassword
(
p_access
,
"HTTP authentication"
,
"Please enter a valid login and password."
,
&
psz_login
,
&
psz_password
);
if
(
i_ret
==
DIALOG_OK_YES
)
...
...
@@ -364,7 +364,7 @@ connect:
if
(
p_sys
->
b_mms
)
{
msg_Dbg
(
p_access
,
"
T
his is actually a live mms server, BAIL"
);
msg_Dbg
(
p_access
,
"
t
his is actually a live mms server, BAIL"
);
goto
error
;
}
...
...
modules/access/mms/mms.c
View file @
4f15591e
...
...
@@ -45,7 +45,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for MMS streams. This " \
"
C
aching value for MMS streams. This " \
"value should be set in milliseconds." )
#define ALL_TEXT N_("Force selection of all streams")
...
...
modules/access/mms/mmsh.c
View file @
4f15591e
...
...
@@ -761,7 +761,7 @@ static int GetPacket( access_t * p_access, chunk_t *p_ck )
}
else
{
msg_Warn
(
p_access
,
"
N
ext stream follow but not supported"
);
msg_Warn
(
p_access
,
"
n
ext stream follow but not supported"
);
return
VLC_EGENERIC
;
}
}
...
...
modules/access/mms/mmstu.c
View file @
4f15591e
...
...
@@ -650,10 +650,10 @@ static int MMSOpen( access_t *p_access, vlc_url_t *p_url, int i_proto )
switch
(
GetDWLE
(
p_sys
->
p_cmd
+
MMS_CMD_HEADERSIZE
)
)
{
case
0x0001
:
msg_Dbg
(
p_access
,
"
M
edia file name/path accepted"
);
msg_Dbg
(
p_access
,
"
m
edia file name/path accepted"
);
break
;
case
0x0002
:
msg_Dbg
(
p_access
,
"
A
uthentication accepted"
);
msg_Dbg
(
p_access
,
"
a
uthentication accepted"
);
break
;
case
-
1
:
default:
...
...
@@ -868,7 +868,7 @@ static int MMSStart( access_t *p_access, uint32_t i_packet )
{
/* get a packet */
mms_HeaderMediaRead
(
p_access
,
MMS_PACKET_MEDIA
);
msg_Dbg
(
p_access
,
"
S
treaming started"
);
msg_Dbg
(
p_access
,
"
s
treaming started"
);
return
(
0
);
}
}
...
...
modules/access/rtsp/access.c
View file @
4f15591e
...
...
@@ -39,7 +39,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value (ms)")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for RTSP streams. This " \
"
C
aching value for RTSP streams. This " \
"value should be set in milliseconds." )
vlc_module_begin
();
...
...
modules/access/screen/screen.c
View file @
4f15591e
...
...
@@ -36,7 +36,7 @@
*****************************************************************************/
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for screen capture. "\
"
C
aching value for screen capture. "\
"This value should be set in milliseconds." )
#define FPS_TEXT N_("Frame rate")
#define FPS_LONGTEXT N_( \
...
...
modules/access/smb.c
View file @
4f15591e
...
...
@@ -58,7 +58,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for SMB streams. This " \
"
C
aching value for SMB streams. This " \
"value should be set in milliseconds." )
#define USER_TEXT N_("SMB user name")
#define USER_LONGTEXT N_("User name that will " \
...
...
modules/access/tcp.c
View file @
4f15591e
...
...
@@ -36,7 +36,7 @@
*****************************************************************************/
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for TCP streams. This " \
"
C
aching value for TCP streams. This " \
"value should be set in milliseconds." )
static
int
Open
(
vlc_object_t
*
);
...
...
modules/access/udp.c
View file @
4f15591e
...
...
@@ -41,7 +41,7 @@
*****************************************************************************/
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for UDP streams. This " \
"
C
aching value for UDP streams. This " \
"value should be set in milliseconds." )
#define AUTO_MTU_TEXT N_("Autodetection of MTU")
...
...
@@ -492,7 +492,7 @@ static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block )
p
=
BlockParseRTP
(
p_access
,
BlockUDP
(
p_access
));
if
(
!
p
&&
(
i_date
-
i_first
)
>
p_sys
->
i_rtp_late
)
{
msg_Err
(
p_access
,
"
E
rror in RTP prebuffering!"
);
msg_Err
(
p_access
,
"
e
rror in RTP prebuffering!"
);
break
;
}
}
...
...
modules/access/v4l/v4l.c
View file @
4f15591e
...
...
@@ -72,7 +72,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for V4L captures. This " \
"
C
aching value for V4L captures. This " \
"value should be set in milliseconds." )
#define VDEV_TEXT N_("Video device name")
#define VDEV_LONGTEXT N_( \
...
...
modules/access/vcd/vcd.c
View file @
4f15591e
...
...
@@ -39,7 +39,7 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value in ms")
#define CACHING_LONGTEXT N_( \
"
Default c
aching value for VCDs. This " \
"
C
aching value for VCDs. This " \
"value should be set in milliseconds." )
vlc_module_begin
();
...
...
@@ -496,3 +496,4 @@ static int EntryPoints( access_t *p_access )
return
VLC_SUCCESS
;
}
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