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
3ba8ca57
Commit
3ba8ca57
authored
May 27, 2006
by
Dennis van Amerongen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Windows Media Video (
VC-1
) Advanced Profile Decoder
parent
fa3a118e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/codec/dmo/dmo.c
modules/codec/dmo/dmo.c
+6
-1
No files found.
modules/codec/dmo/dmo.c
View file @
3ba8ca57
...
...
@@ -133,6 +133,8 @@ struct decoder_sys_t
#endif
};
static
const
GUID
guid_wvc1
=
{
0xc9bfbccf
,
0xe60e
,
0x4588
,
{
0xa3
,
0xdf
,
0x5a
,
0x03
,
0xb1
,
0xfd
,
0x95
,
0x85
}
};
static
const
GUID
guid_wmv9
=
{
0x724bb6a4
,
0xe526
,
0x450f
,
{
0xaf
,
0xfa
,
0xab
,
0x9b
,
0x45
,
0x12
,
0x91
,
0x11
}
};
static
const
GUID
guid_wma9
=
{
0x27ca0808
,
0x01f5
,
0x4e7a
,
{
0x8b
,
0x05
,
0x87
,
0xf8
,
0x07
,
0xa2
,
0x33
,
0xd1
}
};
...
...
@@ -152,7 +154,10 @@ typedef struct
static
const
codec_dll
decoders_table
[]
=
{
/* WM3 */
/* WVC1 */
{
VLC_FOURCC
(
'W'
,
'V'
,
'C'
,
'1'
),
"wvc1dmod.dll"
,
&
guid_wvc1
},
{
VLC_FOURCC
(
'w'
,
'v'
,
'c'
,
'1'
),
"wvc1dmod.dll"
,
&
guid_wvc1
},
/* WMV3 */
{
VLC_FOURCC
(
'W'
,
'M'
,
'V'
,
'3'
),
"wmv9dmod.dll"
,
&
guid_wmv9
},
{
VLC_FOURCC
(
'w'
,
'm'
,
'v'
,
'3'
),
"wmv9dmod.dll"
,
&
guid_wmv9
},
/* WMV2 */
...
...
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