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
8d1bc662
Commit
8d1bc662
authored
Jun 11, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fourcc: simplify
parent
165861e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
src/misc/fourcc_gen.c
src/misc/fourcc_gen.c
+0
-3
src/misc/fourcc_list.h
src/misc/fourcc_list.h
+0
-6
No files found.
src/misc/fourcc_gen.c
View file @
8d1bc662
...
...
@@ -63,9 +63,6 @@ static int cmp_entry(const void *a, const void *b)
static
void
process_list
(
const
char
*
name
,
const
staticentry_t
*
list
,
size_t
n
)
{
assert
(
n
>
0
);
n
--
;
/* discard final nul entry */
struct
entry
*
entries
=
malloc
(
sizeof
(
*
entries
)
*
n
);
if
(
entries
==
NULL
)
abort
();
...
...
src/misc/fourcc_list.h
View file @
8d1bc662
...
...
@@ -1075,8 +1075,6 @@ static const staticentry_t p_list_video[] = {
B
(
VLC_CODEC_DFA
,
"Chronomaster DFA"
),
B
(
VLC_CODEC_HNM4_VIDEO
,
"Cryo Interactive Entertainment HNM4"
),
B
(
VLC_FOURCC
(
0
,
0
,
0
,
0
),
""
)
};
static
const
staticentry_t
p_list_audio
[]
=
{
...
...
@@ -1482,8 +1480,6 @@ static const staticentry_t p_list_audio[] = {
B
(
VLC_CODEC_ADPCM_EA_R1
,
"ADPCM Electronic Arts R1"
),
B
(
VLC_CODEC_ADPCM_IMA_APC
,
"ADPCM APC"
),
B
(
VLC_FOURCC
(
0
,
0
,
0
,
0
),
""
)
};
static
const
staticentry_t
p_list_spu
[]
=
{
...
...
@@ -1554,6 +1550,4 @@ static const staticentry_t p_list_spu[] = {
B
(
VLC_CODEC_TTML
,
"TTML subtitles"
),
A
(
"ttml"
),
B
(
VLC_FOURCC
(
0
,
0
,
0
,
0
),
""
)
};
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