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
4d85871d
Commit
4d85871d
authored
Jul 28, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/informations/information/
parent
16af75f1
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
33 additions
and
33 deletions
+33
-33
bindings/mediacontrol/mediacontrol_structures.h
bindings/mediacontrol/mediacontrol_structures.h
+1
-1
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-1
include/vlc_input_item.h
include/vlc_input_item.h
+3
-3
include/vlc_picture.h
include/vlc_picture.h
+1
-1
include/vlc_vout_display.h
include/vlc_vout_display.h
+2
-2
modules/access/cdda.c
modules/access/cdda.c
+4
-4
modules/access/sftp.c
modules/access/sftp.c
+2
-2
modules/access/zip/zipaccess.c
modules/access/zip/zipaccess.c
+1
-1
modules/codec/avcodec/audio.c
modules/codec/avcodec/audio.c
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+1
-1
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+1
-1
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+2
-2
modules/meta_engine/taglib.cpp
modules/meta_engine/taglib.cpp
+5
-5
modules/packetizer/copy.c
modules/packetizer/copy.c
+1
-1
modules/stream_out/smem.c
modules/stream_out/smem.c
+1
-1
src/control/video.c
src/control/video.c
+1
-1
src/input/es_out.c
src/input/es_out.c
+1
-1
src/interface/dialog.c
src/interface/dialog.c
+1
-1
src/text/filesystem.c
src/text/filesystem.c
+2
-2
src/video_output/vout_pictures.c
src/video_output/vout_pictures.c
+1
-1
No files found.
bindings/mediacontrol/mediacontrol_structures.h
View file @
4d85871d
...
@@ -125,7 +125,7 @@ typedef struct {
...
@@ -125,7 +125,7 @@ typedef struct {
/**
/**
* Stream information
* Stream information
* This structure allows to quickly get various information
s
about the stream.
* This structure allows to quickly get various information about the stream.
*/
*/
typedef
struct
{
typedef
struct
{
mediacontrol_PlayerStatus
streamstatus
;
mediacontrol_PlayerStatus
streamstatus
;
...
...
include/vlc_fourcc.h
View file @
4d85871d
...
@@ -403,7 +403,7 @@ VLC_EXPORT( bool, vlc_fourcc_IsYUV, ( vlc_fourcc_t ) );
...
@@ -403,7 +403,7 @@ VLC_EXPORT( bool, vlc_fourcc_IsYUV, ( vlc_fourcc_t ) );
VLC_EXPORT
(
bool
,
vlc_fourcc_AreUVPlanesSwapped
,
(
vlc_fourcc_t
,
vlc_fourcc_t
)
);
VLC_EXPORT
(
bool
,
vlc_fourcc_AreUVPlanesSwapped
,
(
vlc_fourcc_t
,
vlc_fourcc_t
)
);
/**
/**
* Chroma related information
s
.
* Chroma related information.
*/
*/
typedef
struct
{
typedef
struct
{
unsigned
plane_count
;
unsigned
plane_count
;
...
...
include/vlc_input_item.h
View file @
4d85871d
...
@@ -241,7 +241,7 @@ VLC_EXPORT( void, input_item_ReplaceInfos, ( input_item_t *, info_category_t * )
...
@@ -241,7 +241,7 @@ VLC_EXPORT( void, input_item_ReplaceInfos, ( input_item_t *, info_category_t * )
VLC_EXPORT
(
void
,
input_item_MergeInfos
,
(
input_item_t
*
,
info_category_t
*
)
);
VLC_EXPORT
(
void
,
input_item_MergeInfos
,
(
input_item_t
*
,
info_category_t
*
)
);
/**
/**
* This function creates a new input_item_t with the provided information
s
.
* This function creates a new input_item_t with the provided information.
*
*
* XXX You may also use input_item_New or input_item_NewExt as they need
* XXX You may also use input_item_New or input_item_NewExt as they need
* less arguments.
* less arguments.
...
@@ -249,7 +249,7 @@ VLC_EXPORT( void, input_item_MergeInfos, ( input_item_t *, info_category_t * ) )
...
@@ -249,7 +249,7 @@ VLC_EXPORT( void, input_item_MergeInfos, ( input_item_t *, info_category_t * ) )
VLC_EXPORT
(
input_item_t
*
,
input_item_NewWithType
,
(
vlc_object_t
*
,
const
char
*
psz_uri
,
const
char
*
psz_name
,
int
i_options
,
const
char
*
const
*
ppsz_options
,
unsigned
i_option_flags
,
mtime_t
i_duration
,
int
i_type
)
LIBVLC_USED
);
VLC_EXPORT
(
input_item_t
*
,
input_item_NewWithType
,
(
vlc_object_t
*
,
const
char
*
psz_uri
,
const
char
*
psz_name
,
int
i_options
,
const
char
*
const
*
ppsz_options
,
unsigned
i_option_flags
,
mtime_t
i_duration
,
int
i_type
)
LIBVLC_USED
);
/**
/**
* This function creates a new input_item_t with the provided information
s
.
* This function creates a new input_item_t with the provided information.
*
*
* Provided for convenience.
* Provided for convenience.
*/
*/
...
@@ -257,7 +257,7 @@ VLC_EXPORT( input_item_t *, input_item_NewExt, (vlc_object_t *, const char *psz_
...
@@ -257,7 +257,7 @@ VLC_EXPORT( input_item_t *, input_item_NewExt, (vlc_object_t *, const char *psz_
#define input_item_NewExt(a,b,c,d,e,f,g) input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f,g)
#define input_item_NewExt(a,b,c,d,e,f,g) input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f,g)
/**
/**
* This function creates a new input_item_t with the provided information
s
.
* This function creates a new input_item_t with the provided information.
*
*
* Provided for convenience.
* Provided for convenience.
*/
*/
...
...
include/vlc_picture.h
View file @
4d85871d
...
@@ -220,7 +220,7 @@ static inline void picture_CopyProperties( picture_t *p_dst, const picture_t *p_
...
@@ -220,7 +220,7 @@ static inline void picture_CopyProperties( picture_t *p_dst, const picture_t *p_
}
}
/**
/**
* This function will reset a picture information
s
(properties and quantizers).
* This function will reset a picture information (properties and quantizers).
* It is sometimes useful for reusing pictures (like from a pool).
* It is sometimes useful for reusing pictures (like from a pool).
*/
*/
VLC_EXPORT
(
void
,
picture_Reset
,
(
picture_t
*
)
);
VLC_EXPORT
(
void
,
picture_Reset
,
(
picture_t
*
)
);
...
...
include/vlc_vout_display.h
View file @
4d85871d
...
@@ -113,7 +113,7 @@ typedef struct {
...
@@ -113,7 +113,7 @@ typedef struct {
}
vout_display_cfg_t
;
}
vout_display_cfg_t
;
/**
/**
* Information
s
from a vout_display_t to configure
* Information from a vout_display_t to configure
* the core behaviour.
* the core behaviour.
*
*
* By default they are all false.
* By default they are all false.
...
@@ -271,7 +271,7 @@ struct vout_display_t {
...
@@ -271,7 +271,7 @@ struct vout_display_t {
*/
*/
video_format_t
fmt
;
video_format_t
fmt
;
/* Information
s
/* Information
*
*
* You can only set them in the open function.
* You can only set them in the open function.
*/
*/
...
...
modules/access/cdda.c
View file @
4d85871d
...
@@ -400,7 +400,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
...
@@ -400,7 +400,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
/* If the given string is NULL or empty, fill it by the return value of 'code' */
/* If the given string is NULL or empty, fill it by the return value of 'code' */
#define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0)
#define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0)
/* Retreive CDDB information
s
*/
/* Retreive CDDB information */
#ifdef HAVE_LIBCDDB
#ifdef HAVE_LIBCDDB
char
psz_year_buffer
[
4
+
1
];
char
psz_year_buffer
[
4
+
1
];
msg_Dbg
(
p_access
,
"fetching infos with CDDB"
);
msg_Dbg
(
p_access
,
"fetching infos with CDDB"
);
...
@@ -447,7 +447,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
...
@@ -447,7 +447,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
pp_cd_text
=
NULL
;
pp_cd_text
=
NULL
;
}
}
/* Retrieve CD-TEXT information
s
but prefer CDDB */
/* Retrieve CD-TEXT information but prefer CDDB */
if
(
i_cd_text
>
0
&&
pp_cd_text
[
0
]
)
if
(
i_cd_text
>
0
&&
pp_cd_text
[
0
]
)
{
{
const
vlc_meta_t
*
p_disc
=
pp_cd_text
[
0
];
const
vlc_meta_t
*
p_disc
=
pp_cd_text
[
0
];
...
@@ -522,7 +522,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
...
@@ -522,7 +522,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
const
char
*
psz_track_description
=
NULL
;
const
char
*
psz_track_description
=
NULL
;
#ifdef HAVE_LIBCDDB
#ifdef HAVE_LIBCDDB
/* Retreive CDDB information
s
*/
/* Retreive CDDB information */
if
(
p_disc
)
if
(
p_disc
)
{
{
cddb_track_t
*
t
=
cddb_disc_get_track
(
p_disc
,
i
);
cddb_track_t
*
t
=
cddb_disc_get_track
(
p_disc
,
i
);
...
@@ -534,7 +534,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
...
@@ -534,7 +534,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
}
}
#endif
#endif
/* Retreive CD-TEXT information
s
but prefer CDDB */
/* Retreive CD-TEXT information but prefer CDDB */
if
(
i
+
1
<
i_cd_text
&&
pp_cd_text
[
i
+
1
]
)
if
(
i
+
1
<
i_cd_text
&&
pp_cd_text
[
i
+
1
]
)
{
{
const
vlc_meta_t
*
t
=
pp_cd_text
[
i
+
1
];
const
vlc_meta_t
*
t
=
pp_cd_text
[
i
+
1
];
...
...
modules/access/sftp.c
View file @
4d85871d
...
@@ -198,11 +198,11 @@ static int Open( vlc_object_t* p_this )
...
@@ -198,11 +198,11 @@ static int Open( vlc_object_t* p_this )
goto
error
;
goto
error
;
}
}
/* Get some information
s
*/
/* Get some information */
LIBSSH2_SFTP_ATTRIBUTES
attributes
;
LIBSSH2_SFTP_ATTRIBUTES
attributes
;
if
(
libssh2_sftp_stat
(
p_sys
->
sftp_session
,
url
.
psz_path
,
&
attributes
)
)
if
(
libssh2_sftp_stat
(
p_sys
->
sftp_session
,
url
.
psz_path
,
&
attributes
)
)
{
{
msg_Err
(
p_access
,
"Impossible to get information
s
about the remote file %s"
,
url
.
psz_path
);
msg_Err
(
p_access
,
"Impossible to get information about the remote file %s"
,
url
.
psz_path
);
goto
error
;
goto
error
;
}
}
p_access
->
info
.
i_size
=
attributes
.
filesize
;
p_access
->
info
.
i_size
=
attributes
.
filesize
;
...
...
modules/access/zip/zipaccess.c
View file @
4d85871d
...
@@ -165,7 +165,7 @@ int AccessOpen( vlc_object_t *p_this )
...
@@ -165,7 +165,7 @@ int AccessOpen( vlc_object_t *p_this )
unz_file_info
z_info
;
unz_file_info
z_info
;
unzGetCurrentFileInfo
(
file
,
&
z_info
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
);
unzGetCurrentFileInfo
(
file
,
&
z_info
,
NULL
,
0
,
NULL
,
0
,
NULL
,
0
);
/* Set access information
s
: size is needed for AccessSeek */
/* Set access information: size is needed for AccessSeek */
p_access
->
info
.
i_size
=
z_info
.
uncompressed_size
;
p_access
->
info
.
i_size
=
z_info
.
uncompressed_size
;
p_access
->
info
.
i_pos
=
0
;
p_access
->
info
.
i_pos
=
0
;
p_access
->
info
.
b_eof
=
false
;
p_access
->
info
.
b_eof
=
false
;
...
...
modules/codec/avcodec/audio.c
View file @
4d85871d
...
@@ -215,7 +215,7 @@ int InitAudioDec( decoder_t *p_dec, AVCodecContext *p_context,
...
@@ -215,7 +215,7 @@ int InitAudioDec( decoder_t *p_dec, AVCodecContext *p_context,
/* */
/* */
p_dec
->
fmt_out
.
i_cat
=
AUDIO_ES
;
p_dec
->
fmt_out
.
i_cat
=
AUDIO_ES
;
/* Try to set as much information
s
as possible but do not trust it */
/* Try to set as much information as possible but do not trust it */
SetupOutputFormat
(
p_dec
,
false
);
SetupOutputFormat
(
p_dec
,
false
);
date_Set
(
&
p_sys
->
end_date
,
0
);
date_Set
(
&
p_sys
->
end_date
,
0
);
...
...
modules/demux/ts.c
View file @
4d85871d
...
@@ -3324,7 +3324,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
...
@@ -3324,7 +3324,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
ts_teletext_page_t
p_page
[
2
*
64
+
20
];
ts_teletext_page_t
p_page
[
2
*
64
+
20
];
unsigned
i_page
=
0
;
unsigned
i_page
=
0
;
/* Gather pages information
s
*/
/* Gather pages information */
#if defined _DVBPSI_DR_56_H_ && \
#if defined _DVBPSI_DR_56_H_ && \
defined DVBPSI_VERSION && DVBPSI_VERSION_INT > ((0<<16)+(1<<8)+5)
defined DVBPSI_VERSION && DVBPSI_VERSION_INT > ((0<<16)+(1<<8)+5)
for
(
unsigned
i_tag_idx
=
0
;
i_tag_idx
<
2
;
i_tag_idx
++
)
for
(
unsigned
i_tag_idx
=
0
;
i_tag_idx
<
2
;
i_tag_idx
++
)
...
...
modules/gui/qt4/components/playlist/playlist.cpp
View file @
4d85871d
...
@@ -114,7 +114,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
...
@@ -114,7 +114,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
leftSplitter
->
setMaximumWidth
(
250
);
leftSplitter
->
setMaximumWidth
(
250
);
setCollapsible
(
1
,
false
);
setCollapsible
(
1
,
false
);
/* In case we want to keep the splitter information
s
*/
/* In case we want to keep the splitter information */
// components shall never write there setting to a fixed location, may infer
// components shall never write there setting to a fixed location, may infer
// with other uses of the same component...
// with other uses of the same component...
getSettings
()
->
beginGroup
(
"Playlist"
);
getSettings
()
->
beginGroup
(
"Playlist"
);
...
...
modules/gui/qt4/dialogs/vlm.cpp
View file @
4d85871d
...
@@ -289,7 +289,7 @@ void VLMDialog::mediasPopulator()
...
@@ -289,7 +289,7 @@ void VLMDialog::mediasPopulator()
int
vlmItemCount
;
int
vlmItemCount
;
vlm_media_t
***
ppp_dsc
=
(
vlm_media_t
***
)
malloc
(
sizeof
(
vlm_media_t
)
);
vlm_media_t
***
ppp_dsc
=
(
vlm_media_t
***
)
malloc
(
sizeof
(
vlm_media_t
)
);
/* Get medias information
s
and numbers */
/* Get medias information and numbers */
vlm_Control
(
p_vlm
,
VLM_GET_MEDIAS
,
ppp_dsc
,
&
i_nMedias
);
vlm_Control
(
p_vlm
,
VLM_GET_MEDIAS
,
ppp_dsc
,
&
i_nMedias
);
/* Loop on all of them */
/* Loop on all of them */
...
@@ -305,7 +305,7 @@ void VLMDialog::mediasPopulator()
...
@@ -305,7 +305,7 @@ void VLMDialog::mediasPopulator()
QString
outputText
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
psz_output
);
QString
outputText
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
psz_output
);
/* Schedule media is a quite especial, maybe there is another way to grab information
s
*/
/* Schedule media is a quite especial, maybe there is another way to grab information */
if
(
(
*
ppp_dsc
)[
i
]
->
b_vod
)
if
(
(
*
ppp_dsc
)[
i
]
->
b_vod
)
{
{
typeShortName
=
"VOD"
;
typeShortName
=
"VOD"
;
...
...
modules/meta_engine/taglib.cpp
View file @
4d85871d
...
@@ -94,7 +94,7 @@ using namespace TagLib;
...
@@ -94,7 +94,7 @@ using namespace TagLib;
/**
/**
* Read meta information
s
from APE tags
* Read meta information from APE tags
* @param tag: the APE tag
* @param tag: the APE tag
* @param p_demux; the demux object
* @param p_demux; the demux object
* @param p_demux_meta: the demuxer meta
* @param p_demux_meta: the demuxer meta
...
@@ -156,7 +156,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
...
@@ -156,7 +156,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
p_txxx
->
fieldList
().
toString
().
toCString
(
true
)
);
p_txxx
->
fieldList
().
toString
().
toCString
(
true
)
);
}
}
// Get some more information
s
// Get some more information
#define SET( tagName, metaName ) \
#define SET( tagName, metaName ) \
list = tag->frameListMap()[tagName]; \
list = tag->frameListMap()[tagName]; \
if( !list.isEmpty() ) \
if( !list.isEmpty() ) \
...
@@ -271,7 +271,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
...
@@ -271,7 +271,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
/**
/**
* Read the meta information
s
from XiphComments
* Read the meta information from XiphComments
* @param tag: the Xiph Comment
* @param tag: the Xiph Comment
* @param p_demux; the demux object
* @param p_demux; the demux object
* @param p_demux_meta: the demuxer meta
* @param p_demux_meta: the demuxer meta
...
@@ -484,7 +484,7 @@ static int ReadMeta( vlc_object_t* p_this)
...
@@ -484,7 +484,7 @@ static int ReadMeta( vlc_object_t* p_this)
/**
/**
* Write meta information
s
to APE tags
* Write meta information to APE tags
* @param tag: the APE tag
* @param tag: the APE tag
* @param p_item: the input item
* @param p_item: the input item
*/
*/
...
@@ -542,7 +542,7 @@ static void WriteMetaToId3v2( ID3v2::Tag* tag, input_item_t* p_item )
...
@@ -542,7 +542,7 @@ static void WriteMetaToId3v2( ID3v2::Tag* tag, input_item_t* p_item )
/**
/**
* Write the meta information
s
to XiphComments
* Write the meta information to XiphComments
* @param tag: the Xiph Comment
* @param tag: the Xiph Comment
* @param p_input: the input item
* @param p_input: the input item
*/
*/
...
...
modules/packetizer/copy.c
View file @
4d85871d
...
@@ -209,7 +209,7 @@ static block_t *PacketizeSub( decoder_t *p_dec, block_t **pp_block )
...
@@ -209,7 +209,7 @@ static block_t *PacketizeSub( decoder_t *p_dec, block_t **pp_block )
return
p_block
;
return
p_block
;
}
}
/* Parse WMV3 packet and extract frame type information
s
*/
/* Parse WMV3 packet and extract frame type information */
static
void
ParseWMV3
(
decoder_t
*
p_dec
,
block_t
*
p_block
)
static
void
ParseWMV3
(
decoder_t
*
p_dec
,
block_t
*
p_block
)
{
{
bs_t
s
;
bs_t
s
;
...
...
modules/stream_out/smem.c
View file @
4d85871d
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
* For example, you can use smem as it :
* For example, you can use smem as it :
* --sout="#transcode{vcodec=RV24,acodec=s16l}:smem{smem-options}"
* --sout="#transcode{vcodec=RV24,acodec=s16l}:smem{smem-options}"
*
*
* Into each lock function (audio and video), you will have all the information
s
* Into each lock function (audio and video), you will have all the information
* you need to allocate a buffer, so that this module will copy data in it.
* you need to allocate a buffer, so that this module will copy data in it.
*
*
* the video-data and audio-data pointers will be passed to lock/unlock function
* the video-data and audio-data pointers will be passed to lock/unlock function
...
...
src/control/video.c
View file @
4d85871d
...
@@ -286,7 +286,7 @@ int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
...
@@ -286,7 +286,7 @@ int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
if
(
i_ret
<
0
)
if
(
i_ret
<
0
)
{
{
vlc_object_release
(
p_input_thread
);
vlc_object_release
(
p_input_thread
);
libvlc_printerr
(
"Subtitle information
s
not found"
);
libvlc_printerr
(
"Subtitle information not found"
);
return
-
1
;
return
-
1
;
}
}
...
...
src/input/es_out.c
View file @
4d85871d
...
@@ -2862,7 +2862,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
...
@@ -2862,7 +2862,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
if
(
!
p_cat
)
if
(
!
p_cat
)
return
;
return
;
/* Add information
s
*/
/* Add information */
const
char
*
psz_type
;
const
char
*
psz_type
;
switch
(
fmt
->
i_cat
)
switch
(
fmt
->
i_cat
)
{
{
...
...
src/interface/dialog.c
View file @
4d85871d
...
@@ -131,7 +131,7 @@ void dialog_VFatal (vlc_object_t *obj, bool modal, const char *title,
...
@@ -131,7 +131,7 @@ void dialog_VFatal (vlc_object_t *obj, bool modal, const char *title,
#undef dialog_Login
#undef dialog_Login
/**
/**
* Requests a username and password through the user interface.
* Requests a username and password through the user interface.
* @param obj the VLC object requesting credential information
s
* @param obj the VLC object requesting credential information
* @param username a pointer to the specified username [OUT]
* @param username a pointer to the specified username [OUT]
* @param password a pointer to the specified password [OUT]
* @param password a pointer to the specified password [OUT]
* @param title title for the dialog
* @param title title for the dialog
...
...
src/text/filesystem.c
View file @
4d85871d
...
@@ -459,7 +459,7 @@ static int vlc_statEx( const char *filename, struct stat *buf,
...
@@ -459,7 +459,7 @@ static int vlc_statEx( const char *filename, struct stat *buf,
}
}
/**
/**
* Finds file/inode information
s
, as stat().
* Finds file/inode information, as stat().
* Consider using fstat() instead, if possible.
* Consider using fstat() instead, if possible.
*
*
* @param filename UTF-8 file path
* @param filename UTF-8 file path
...
@@ -470,7 +470,7 @@ int vlc_stat( const char *filename, struct stat *buf)
...
@@ -470,7 +470,7 @@ int vlc_stat( const char *filename, struct stat *buf)
}
}
/**
/**
* Finds file/inode information
s
, as lstat().
* Finds file/inode information, as lstat().
* Consider using fstat() instead, if possible.
* Consider using fstat() instead, if possible.
*
*
* @param filename UTF-8 file path
* @param filename UTF-8 file path
...
...
src/video_output/vout_pictures.c
View file @
4d85871d
...
@@ -266,7 +266,7 @@ picture_t *picture_NewFromResource( const video_format_t *p_fmt, const picture_r
...
@@ -266,7 +266,7 @@ picture_t *picture_NewFromResource( const video_format_t *p_fmt, const picture_r
{
{
video_format_t
fmt
=
*
p_fmt
;
video_format_t
fmt
=
*
p_fmt
;
/* It is needed to be sure all information
s
are filled */
/* It is needed to be sure all information are filled */
video_format_Setup
(
&
fmt
,
p_fmt
->
i_chroma
,
video_format_Setup
(
&
fmt
,
p_fmt
->
i_chroma
,
p_fmt
->
i_width
,
p_fmt
->
i_height
,
p_fmt
->
i_width
,
p_fmt
->
i_height
,
p_fmt
->
i_sar_num
,
p_fmt
->
i_sar_den
);
p_fmt
->
i_sar_num
,
p_fmt
->
i_sar_den
);
...
...
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