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
cb0c8677
Commit
cb0c8677
authored
Nov 14, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add DivX as supported filter to DShow interface.
parent
73c881f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
modules/access/dshow/filter.cpp
modules/access/dshow/filter.cpp
+7
-0
No files found.
modules/access/dshow/filter.cpp
View file @
cb0c8677
...
...
@@ -147,6 +147,9 @@ const GUID FORMAT_MPEG2Video = {0xe06d80e3, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0
/* MJPG format */
const
GUID
MEDIASUBTYPE_MJPG
=
{
0x47504A4D
,
0x0000
,
0x0010
,
{
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
}};
/* DivX formats */
const
GUID
MEDIASUBTYPE_DIVX
=
{
0x58564944
,
0x0000
,
0x0010
,
{
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
}};
/* Analog Video */
const
GUID
FORMAT_AnalogVideo
=
{
0x482dde0
,
0x7817
,
0x11cf
,
{
0x8a
,
0x3
,
0x0
,
0xaa
,
0x0
,
0x6e
,
0xcb
,
0x65
}};
...
...
@@ -278,6 +281,10 @@ int GetFourCCFromMediaType( const AM_MEDIA_TYPE &media_type )
else
if
(
media_type
.
subtype
==
MEDIASUBTYPE_MPEG2_VIDEO
)
i_fourcc
=
VLC_FOURCC
(
'm'
,
'p'
,
'2'
,
'v'
);
/* DivX video */
else
if
(
media_type
.
subtype
==
MEDIASUBTYPE_DIVX
)
i_fourcc
=
VLC_FOURCC
(
'D'
,
'I'
,
'V'
,
'X'
);
/* DV formats */
else
if
(
media_type
.
subtype
==
MEDIASUBTYPE_dvsl
)
i_fourcc
=
VLC_FOURCC
(
'd'
,
'v'
,
's'
,
'l'
);
...
...
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