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
2d4b2ba4
Commit
2d4b2ba4
authored
Sep 11, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/informations/information
parent
c77682bf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
include/vlc/libvlc.h
include/vlc/libvlc.h
+5
-5
include/vlc_interface.h
include/vlc_interface.h
+1
-1
modules/access/bluray.c
modules/access/bluray.c
+1
-1
modules/access/live555.cpp
modules/access/live555.cpp
+1
-1
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+1
-1
No files found.
include/vlc/libvlc.h
View file @
2d4b2ba4
...
...
@@ -215,7 +215,7 @@ void libvlc_set_user_agent( libvlc_instance_t *p_instance,
const
char
*
name
,
const
char
*
http
);
/**
* Sets some meta-information
s
about the application.
* Sets some meta-information about the application.
* See also libvlc_set_user_agent().
*
* \param p_instance LibVLC instance
...
...
@@ -353,7 +353,7 @@ enum libvlc_log_level
typedef
struct
vlc_log_t
libvlc_log_t
;
/**
* Gets debugging information
s
about a log message: the name of the VLC module
* Gets debugging information about a log message: the name of the VLC module
* emitting the message and the message location within the source code.
*
* The returned module name and file name will be NULL if unknown.
...
...
@@ -372,9 +372,9 @@ LIBVLC_API void libvlc_log_get_context(const libvlc_log_t *ctx,
const
char
**
module
,
const
char
**
file
,
unsigned
*
line
);
/**
* Gets VLC object information
s
about a log message: the type name of the VLC
* Gets VLC object information about a log message: the type name of the VLC
* object emitting the message, the object header if any and a temporaly-unique
* object identifier. These information
s
are mainly meant for <b>manual</b>
* object identifier. These information are mainly meant for <b>manual</b>
* troubleshooting.
*
* The returned type name may be "generic" if unknown, but it cannot be NULL.
...
...
@@ -399,7 +399,7 @@ LIBVLC_API void libvlc_log_get_object(const libvlc_log_t *ctx,
* Callback prototype for LibVLC log message handler.
* \param data data pointer as given to libvlc_log_set()
* \param level message level (@ref enum libvlc_log_level)
* \param ctx message context (meta-information
s
about the message)
* \param ctx message context (meta-information about the message)
* \param fmt printf() format string (as defined by ISO C11)
* \param args variable argument list for the format
* \note Log message handlers <b>must</b> be thread-safe.
...
...
include/vlc_interface.h
View file @
2d4b2ba4
...
...
@@ -105,7 +105,7 @@ VLC_API void libvlc_Quit( libvlc_int_t * );
* Message logging callback signature.
* \param data data pointer as provided to vlc_msg_SetCallback().
* \param type message type (VLC_MSG_* values from enum vlc_log_type)
* \param item meta information
s
* \param item meta information
* \param fmt format string
* \param args format string arguments
*/
...
...
modules/access/bluray.c
View file @
2d4b2ba4
...
...
@@ -128,7 +128,7 @@ struct demux_sys_t
unsigned
int
i_current_clip
;
input_title_t
**
pp_title
;
/* Meta information
s
*/
/* Meta information */
const
META_DL
*
p_meta
;
/* Menus */
...
...
modules/access/live555.cpp
View file @
2d4b2ba4
...
...
@@ -1804,7 +1804,7 @@ static void StreamRead( void *p_private, unsigned int i_size,
QuickTimeGenericRTPSource
::
QTState
&
qtState
=
qtRTPSource
->
qtState
;
uint8_t
*
sdAtom
=
(
uint8_t
*
)
&
qtState
.
sdAtom
[
4
];
/* Get codec information
s
from the quicktime atoms :
/* Get codec information from the quicktime atoms :
* http://developer.apple.com/quicktime/icefloe/dispatch026.html */
if
(
tk
->
fmt
.
i_cat
==
VIDEO_ES
)
{
if
(
qtState
.
sdAtomSize
<
16
+
32
)
...
...
modules/codec/avcodec/video.c
View file @
2d4b2ba4
...
...
@@ -1292,7 +1292,7 @@ static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context,
if
(
!
can_hwaccel
)
goto
end
;
/* Profile and level information
s
are needed now.
/* Profile and level information are needed now.
* TODO: avoid code duplication with avcodec.c */
if
(
p_context
->
profile
!=
FF_PROFILE_UNKNOWN
)
p_dec
->
fmt_in
.
i_profile
=
p_context
->
profile
;
...
...
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