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
77f8c2d6
Commit
77f8c2d6
authored
Jan 22, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add FOURCC's for DAT12 and L24 (IETF RFC3190)
parent
d16fe011
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
include/vlc_fourcc.h
include/vlc_fourcc.h
+2
-0
src/misc/fourcc.c
src/misc/fourcc.c
+4
-0
No files found.
include/vlc_fourcc.h
View file @
77f8c2d6
...
...
@@ -265,6 +265,7 @@
#define VLC_CODEC_S16B VLC_FOURCC('s','1','6','b')
#define VLC_CODEC_U16L VLC_FOURCC('u','1','6','l')
#define VLC_CODEC_U16B VLC_FOURCC('u','1','6','b')
#define VLC_CODEC_S20B VLC_FOURCC('s','2','0','b')
#define VLC_CODEC_S24L VLC_FOURCC('s','2','4','l')
#define VLC_CODEC_S24B VLC_FOURCC('s','2','4','b')
#define VLC_CODEC_U24L VLC_FOURCC('u','2','4','l')
...
...
@@ -280,6 +281,7 @@
#define VLC_CODEC_ALAW VLC_FOURCC('a','l','a','w')
#define VLC_CODEC_MULAW VLC_FOURCC('m','l','a','w')
#define VLC_CODEC_DAT12 VLC_FOURCC('L','P','1','2')
#define VLC_CODEC_S24DAUD VLC_FOURCC('d','a','u','d')
#define VLC_CODEC_FI32 VLC_FOURCC('f','i','3','2')
#define VLC_CODEC_TWINVQ VLC_FOURCC('T','W','I','N')
...
...
src/misc/fourcc.c
View file @
77f8c2d6
...
...
@@ -1073,6 +1073,8 @@ static const entry_t p_list_audio[] = {
B
(
VLC_CODEC_U16B
,
"PCM U16 BE"
),
A
(
"u16b"
),
B
(
VLC_CODEC_S20B
,
"PCM S20 BE"
),
B
(
VLC_CODEC_S24L
,
"PCM S24 LE"
),
A
(
"s24l"
),
A
(
"42ni"
),
/* Quicktime */
...
...
@@ -1108,6 +1110,8 @@ static const entry_t p_list_audio[] = {
A
(
"mlaw"
),
A
(
"ulaw"
),
B
(
VLC_CODEC_DAT12
,
"12 bits DAT audio"
),
B
(
VLC_CODEC_S24DAUD
,
"PCM DAUD"
),
A
(
"daud"
),
...
...
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