Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
3ba8ca57
Commit
3ba8ca57
authored
May 27, 2006
by
trax
Browse files
Add support for Windows Media Video (VC-1) Advanced Profile Decoder
parent
fa3a118e
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/codec/dmo/dmo.c
View file @
3ba8ca57
...
@@ -133,6 +133,8 @@ struct decoder_sys_t
...
@@ -133,6 +133,8 @@ struct decoder_sys_t
#endif
#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_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
}
};
static
const
GUID
guid_wma9
=
{
0x27ca0808
,
0x01f5
,
0x4e7a
,
{
0x8b
,
0x05
,
0x87
,
0xf8
,
0x07
,
0xa2
,
0x33
,
0xd1
}
};
...
@@ -152,7 +154,10 @@ typedef struct
...
@@ -152,7 +154,10 @@ typedef struct
static
const
codec_dll
decoders_table
[]
=
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
},
{
VLC_FOURCC
(
'w'
,
'm'
,
'v'
,
'3'
),
"wmv9dmod.dll"
,
&
guid_wmv9
},
{
VLC_FOURCC
(
'w'
,
'm'
,
'v'
,
'3'
),
"wmv9dmod.dll"
,
&
guid_wmv9
},
/* WMV2 */
/* WMV2 */
...
...
Write
Preview
Supports
Markdown
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