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
7289f1e5
Commit
7289f1e5
authored
Aug 28, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use VLC_CODEC for ADPCM_IMA_WAV
parent
723b7b01
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
+7
-4
include/vlc_codecs.h
include/vlc_codecs.h
+1
-1
include/vlc_fourcc.h
include/vlc_fourcc.h
+2
-1
modules/codec/adpcm.c
modules/codec/adpcm.c
+1
-1
modules/demux/wav.c
modules/demux/wav.c
+1
-1
src/misc/fourcc.c
src/misc/fourcc.c
+2
-0
No files found.
include/vlc_codecs.h
View file @
7289f1e5
...
...
@@ -306,7 +306,7 @@ wave_format_tag_to_fourcc[] =
{
WAVE_FORMAT_IEEE_FLOAT
,
VLC_FOURCC
(
'a'
,
'f'
,
'l'
,
't'
),
"IEEE Float audio"
},
{
WAVE_FORMAT_ALAW
,
VLC_CODEC_ALAW
,
"A-Law"
},
{
WAVE_FORMAT_MULAW
,
VLC_CODEC_MULAW
,
"Mu-Law"
},
{
WAVE_FORMAT_IMA_ADPCM
,
VLC_
FOURCC
(
'm'
,
's'
,
0x00
,
0x11
),
"Ima-ADPCM"
},
{
WAVE_FORMAT_IMA_ADPCM
,
VLC_
CODEC_ADPCM_IMA_WAV
,
"Ima-ADPCM"
},
{
WAVE_FORMAT_TRUESPEECH
,
VLC_FOURCC
(
0x22
,
0x0
,
0x0
,
0x0
),
"Truespeech"
},
{
WAVE_FORMAT_GSM610
,
VLC_CODEC_GSM_MS
,
"Microsoft WAV GSM"
},
{
WAVE_FORMAT_G726
,
VLC_CODEC_ADPCM_G726
,
"G.726 ADPCM"
},
...
...
include/vlc_fourcc.h
View file @
7289f1e5
...
...
@@ -218,10 +218,11 @@
#define VLC_CODEC_ADPCM_XA VLC_FOURCC('x','a',' ',' ')
#define VLC_CODEC_ADPCM_ADX VLC_FOURCC('a','d','x',' ')
#define VLC_CODEC_ADPCM_IMA_WS VLC_FOURCC('A','I','W','S')
#define VLC_CODEC_VMDAUDIO VLC_FOURCC('v','m','d','a')
#define VLC_CODEC_ADPCM_G726 VLC_FOURCC('g','7','2','6')
#define VLC_CODEC_ADPCM_SWF VLC_FOURCC('S','W','F','a')
#define VLC_CODEC_ADPCM_MS VLC_FOURCC('m','s',0x00,0x02)
#define VLC_CODEC_ADPCM_IMA_WAV VLC_FOURCC('m','s',0x00,0x11)
#define VLC_CODEC_VMDAUDIO VLC_FOURCC('v','m','d','a')
#define VLC_CODEC_AMR_NB VLC_FOURCC('s','a','m','r')
#define VLC_CODEC_AMR_WB VLC_FOURCC('s','a','w','b')
#define VLC_CODEC_ALAC VLC_FOURCC('a','l','a','c')
...
...
modules/codec/adpcm.c
View file @
7289f1e5
...
...
@@ -174,7 +174,7 @@ static int OpenDecoder( vlc_object_t *p_this )
case
VLC_FOURCC
(
'i'
,
'm'
,
'a'
,
'4'
):
/* IMA ADPCM */
p_sys
->
codec
=
ADPCM_IMA_QT
;
break
;
case
VLC_
FOURCC
(
'm'
,
's'
,
0x00
,
0x11
)
:
/* IMA ADPCM */
case
VLC_
CODEC_ADPCM_IMA_WAV
:
/* IMA ADPCM */
p_sys
->
codec
=
ADPCM_IMA_WAV
;
break
;
case
VLC_CODEC_ADPCM_MS
:
/* MS ADPCM */
...
...
modules/demux/wav.c
View file @
7289f1e5
...
...
@@ -323,7 +323,7 @@ static int Open( vlc_object_t * p_this )
&
p_sys
->
fmt
)
)
goto
error
;
break
;
case
VLC_
FOURCC
(
'm'
,
's'
,
0x00
,
0x11
)
:
case
VLC_
CODEC_ADPCM_IMA_WAV
:
if
(
FrameInfo_IMA_ADPCM
(
&
p_sys
->
i_frame_size
,
&
p_sys
->
i_frame_samples
,
&
p_sys
->
fmt
)
)
goto
error
;
...
...
src/misc/fourcc.c
View file @
7289f1e5
...
...
@@ -909,6 +909,8 @@ static const entry_t p_list_audio[] = {
B
(
VLC_CODEC_ADPCM_SWF
,
"Flash ADPCM Audio"
),
A
(
"SWFa"
),
B
(
VLC_CODEC_ADPCM_IMA_WAV
,
"IMA WAV ADPCM Audio"
),
A
(
"ms
\x00\x11
"
),
/* AMR */
B
(
VLC_CODEC_AMR_NB
,
"AMR narrow band"
),
...
...
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