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
c925ed56
Commit
c925ed56
authored
Oct 21, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Add 24bit and 32bit PCM stream support to avcodec
parent
891d4074
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+17
-0
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
c925ed56
...
@@ -1116,6 +1116,23 @@ static struct
...
@@ -1116,6 +1116,23 @@ static struct
AUDIO_ES
,
"PCM U16 LE"
},
AUDIO_ES
,
"PCM U16 LE"
},
{
VLC_FOURCC
(
'u'
,
'1'
,
'6'
,
'b'
),
CODEC_ID_PCM_U16BE
,
{
VLC_FOURCC
(
'u'
,
'1'
,
'6'
,
'b'
),
CODEC_ID_PCM_U16BE
,
AUDIO_ES
,
"PCM U16 BE"
},
AUDIO_ES
,
"PCM U16 BE"
},
{
VLC_FOURCC
(
's'
,
'2'
,
'4'
,
'l'
),
CODEC_ID_PCM_S24LE
,
AUDIO_ES
,
"PCM S24 LE"
},
{
VLC_FOURCC
(
's'
,
'2'
,
'4'
,
'b'
),
CODEC_ID_PCM_S24BE
,
AUDIO_ES
,
"PCM S24 BE"
},
{
VLC_FOURCC
(
'u'
,
'2'
,
'4'
,
'l'
),
CODEC_ID_PCM_U24LE
,
AUDIO_ES
,
"PCM U24 LE"
},
{
VLC_FOURCC
(
'u'
,
'2'
,
'4'
,
'b'
),
CODEC_ID_PCM_U24BE
,
AUDIO_ES
,
"PCM U24 BE"
},
{
VLC_FOURCC
(
's'
,
'3'
,
'2'
,
'l'
),
CODEC_ID_PCM_S32LE
,
AUDIO_ES
,
"PCM S32 LE"
},
{
VLC_FOURCC
(
's'
,
'3'
,
'2'
,
'b'
),
CODEC_ID_PCM_S32BE
,
AUDIO_ES
,
"PCM S32 BE"
},
{
VLC_FOURCC
(
'u'
,
'3'
,
'2'
,
'l'
),
CODEC_ID_PCM_U32LE
,
AUDIO_ES
,
"PCM U32 LE"
},
{
VLC_FOURCC
(
'u'
,
'3'
,
'2'
,
'b'
),
CODEC_ID_PCM_U32BE
,
AUDIO_ES
,
"PCM U32 BE"
},
{
VLC_FOURCC
(
'a'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_ALAW
,
{
VLC_FOURCC
(
'a'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_ALAW
,
{
VLC_FOURCC
(
'a'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_ALAW
,
AUDIO_ES
,
"PCM ALAW"
},
AUDIO_ES
,
"PCM ALAW"
},
{
VLC_FOURCC
(
'u'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_MULAW
,
{
VLC_FOURCC
(
'u'
,
'l'
,
'a'
,
'w'
),
CODEC_ID_PCM_MULAW
,
...
...
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