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
dc90d448
Commit
dc90d448
authored
Apr 30, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Windows Media Audio 9 Speech (Closes:#606)
parent
b7718838
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
include/codecs.h
include/codecs.h
+2
-0
modules/codec/dmo/dmo.c
modules/codec/dmo/dmo.c
+3
-0
No files found.
include/codecs.h
View file @
dc90d448
...
...
@@ -215,6 +215,7 @@ typedef struct
#define WAVE_FORMAT_ALAW 0x0006
/* Microsoft Corporation */
#define WAVE_FORMAT_MULAW 0x0007
/* Microsoft Corporation */
#define WAVE_FORMAT_DTS_MS 0x0008
/* Microsoft Corporation */
#define WAVE_FORMAT_WMAS 0x000a
/* WMA 9 Speech */
#define WAVE_FORMAT_IMA_ADPCM 0x0011
/* Intel Corporation */
#define WAVE_FORMAT_GSM610 0x0031
/* Microsoft Corporation */
#define WAVE_FORMAT_MSNAUDIO 0x0032
/* Microsoft Corporation */
...
...
@@ -308,6 +309,7 @@ wave_format_tag_to_fourcc[] =
{
WAVE_FORMAT_WMA2
,
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
' '
),
"Window Media Audio v2"
},
{
WAVE_FORMAT_WMAP
,
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
'p'
),
"Window Media Audio 9 Professional"
},
{
WAVE_FORMAT_WMAL
,
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
'l'
),
"Window Media Audio 9 Lossless"
},
{
WAVE_FORMAT_WMAS
,
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
's'
),
"Window Media Audio 9 Speech"
},
{
WAVE_FORMAT_DK3
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x61
),
"Duck DK3"
},
{
WAVE_FORMAT_DK4
,
VLC_FOURCC
(
'm'
,
's'
,
0x00
,
0x62
),
"Duck DK4"
},
{
WAVE_FORMAT_DTS
,
VLC_FOURCC
(
'd'
,
't'
,
's'
,
' '
),
"DTS Coherent Acoustics"
},
...
...
modules/codec/dmo/dmo.c
View file @
dc90d448
...
...
@@ -170,6 +170,9 @@ static const codec_dll decoders_table[] =
{
VLC_FOURCC
(
'W'
,
'M'
,
'A'
,
'2'
),
"wma9dmod.dll"
,
&
guid_wma9
},
{
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
'2'
),
"wma9dmod.dll"
,
&
guid_wma9
},
/* WMA Speech */
{
VLC_FOURCC
(
'w'
,
'm'
,
'a'
,
's'
),
"wmspdmod.dll"
,
&
guid_wma
},
/* */
{
0
,
NULL
,
NULL
}
};
...
...
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