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
f0b34833
Commit
f0b34833
authored
Nov 18, 2013
by
Maxim Bublis
Committed by
Rémi Denis-Courmont
Nov 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warnings on duplicate const modifiers.
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
7dcd1665
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
modules/codec/schroedinger.c
modules/codec/schroedinger.c
+1
-1
modules/codec/x264.c
modules/codec/x264.c
+1
-1
modules/control/dbus/dbus_root.c
modules/control/dbus/dbus_root.c
+2
-2
modules/demux/ogg.c
modules/demux/ogg.c
+2
-2
modules/demux/ogg.h
modules/demux/ogg.h
+1
-1
modules/lua/extension.c
modules/lua/extension.c
+1
-1
src/input/subtitles.c
src/input/subtitles.c
+1
-1
No files found.
modules/codec/schroedinger.c
View file @
f0b34833
...
...
@@ -342,7 +342,7 @@ static const char *const enc_profile_list_text[] =
N_
(
"Main Profile"
),
};
static
const
char
*
const
const
ppsz_enc_options
[]
=
{
static
const
char
*
const
ppsz_enc_options
[]
=
{
ENC_RATE_CONTROL
,
ENC_GOP_STRUCTURE
,
ENC_QUALITY
,
ENC_NOISE_THRESHOLD
,
ENC_BITRATE
,
ENC_MIN_BITRATE
,
ENC_MAX_BITRATE
,
ENC_AU_DISTANCE
,
ENC_CHROMAFMT
,
ENC_PREFILTER
,
ENC_PREFILTER_STRENGTH
,
ENC_CODINGMODE
,
ENC_MCBLK_SIZE
,
...
...
modules/codec/x264.c
View file @
f0b34833
...
...
@@ -441,7 +441,7 @@ static const char *const direct_pred_list[] =
static
const
char
*
const
direct_pred_list_text
[]
=
{
N_
(
"None"
),
N_
(
"Spatial"
),
N_
(
"Temporal"
),
N_
(
"Auto"
)
};
static
const
int
const
framepacking_list
[]
=
static
const
int
framepacking_list
[]
=
{
-
1
,
0
,
1
,
2
,
3
,
4
,
5
};
static
const
char
*
const
framepacking_list_text
[]
=
{
""
,
N_
(
"checkerboard"
),
N_
(
"column alternation"
),
N_
(
"row alternation"
),
N_
(
"side by side"
),
N_
(
"top bottom"
),
N_
(
"frame alternation"
)
};
...
...
modules/control/dbus/dbus_root.c
View file @
f0b34833
...
...
@@ -43,13 +43,13 @@
#include "dbus_root.h"
#include "dbus_common.h"
static
const
char
const
ppsz_supported_uri_schemes
[][
9
]
=
{
static
const
char
ppsz_supported_uri_schemes
[][
9
]
=
{
"file"
,
"http"
,
"https"
,
"rtsp"
,
"realrtsp"
,
"pnm"
,
"ftp"
,
"mtp"
,
"smb"
,
"mms"
,
"mmsu"
,
"mmst"
,
"mmsh"
,
"unsv"
,
"itpc"
,
"icyx"
,
"rtmp"
,
"rtp"
,
"dccp"
,
"dvd"
,
"vcd"
,
"vcdx"
};
static
const
char
const
ppsz_supported_mime_types
[][
26
]
=
{
static
const
char
ppsz_supported_mime_types
[][
26
]
=
{
"audio/mpeg"
,
"audio/x-mpeg"
,
"video/mpeg"
,
"video/x-mpeg"
,
"video/mpeg-system"
,
"video/x-mpeg-system"
,
...
...
modules/demux/ogg.c
View file @
f0b34833
...
...
@@ -2597,7 +2597,7 @@ static void Ogg_ReadSkeletonBones( demux_t *p_demux, ogg_packet *p_oggpacket )
/* Unpacks the 7bit variable encoding used in skeleton indexes */
unsigned
const
char
*
Read7BitsVariableLE
(
unsigned
const
char
*
p_begin
,
unsigned
const
char
const
*
p_end
,
unsigned
const
char
*
p_end
,
uint64_t
*
pi_value
)
{
int
i_shift
=
0
;
...
...
@@ -2642,7 +2642,7 @@ static void Ogg_ReadSkeletonIndex( demux_t *p_demux, ogg_packet *p_oggpacket )
p_stream
->
p_skel
->
i_indexfirstnum
=
GetQWLE
(
&
p_oggpacket
->
packet
[
24
]
);
p_stream
->
p_skel
->
i_indexlastnum
=
GetQWLE
(
&
p_oggpacket
->
packet
[
32
]
);
unsigned
const
char
*
p_fwdbyte
=
&
p_oggpacket
->
packet
[
42
];
unsigned
const
char
const
*
p_boundary
=
p_oggpacket
->
packet
+
p_oggpacket
->
bytes
;
unsigned
const
char
*
p_boundary
=
p_oggpacket
->
packet
+
p_oggpacket
->
bytes
;
uint64_t
i_offset
=
0
;
uint64_t
i_time
=
0
;
uint64_t
i_keypoints_found
=
0
;
...
...
modules/demux/ogg.h
View file @
f0b34833
...
...
@@ -175,7 +175,7 @@ struct demux_sys_t
unsigned
const
char
*
Read7BitsVariableLE
(
unsigned
const
char
*
,
unsigned
const
char
const
*
,
unsigned
const
char
*
,
uint64_t
*
);
bool
Ogg_GetBoundsUsingSkeletonIndex
(
logical_stream_t
*
p_stream
,
int64_t
i_time
,
int64_t
*
pi_lower
,
int64_t
*
pi_upper
);
modules/lua/extension.c
View file @
f0b34833
...
...
@@ -49,7 +49,7 @@ static const luaL_Reg p_reg[] =
* Extensions capabilities
* Note: #define and ppsz_capabilities must be in sync
*/
static
const
char
c
onst
c
aps
[][
20
]
=
{
static
const
char
caps
[][
20
]
=
{
#define EXT_HAS_MENU (1 << 0) ///< Hook: menu
"menu"
,
#define EXT_TRIGGER_ONLY (1 << 1) ///< Hook: trigger. Not activable
...
...
src/input/subtitles.c
View file @
f0b34833
...
...
@@ -51,7 +51,7 @@
/**
* The possible extensions for subtitle files we support
*/
static
const
char
const
sub_exts
[][
6
]
=
{
static
const
char
sub_exts
[][
6
]
=
{
"idx"
,
"sub"
,
"srt"
,
"ssa"
,
"ass"
,
"smi"
,
"utf"
,
"utf8"
,
"utf-8"
,
...
...
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