Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
e3e9dc88
Commit
e3e9dc88
authored
Feb 22, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DShow: GUID fixes
Notably export GUID in the header
parent
9a05e272
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
modules/access/dshow/common.h
modules/access/dshow/common.h
+5
-0
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+2
-0
modules/access/dshow/filter.cpp
modules/access/dshow/filter.cpp
+0
-7
No files found.
modules/access/dshow/common.h
View file @
e3e9dc88
...
@@ -98,6 +98,11 @@ struct access_sys_t
...
@@ -98,6 +98,11 @@ struct access_sys_t
bool
b_chroma
;
/* Force a specific chroma on the dshow input */
bool
b_chroma
;
/* Force a specific chroma on the dshow input */
};
};
const
GUID
IID_IAMBufferNegotiation
=
{
0x56ed71a0
,
0xaf5f
,
0x11d0
,
{
0xb3
,
0xf0
,
0x00
,
0xaa
,
0x00
,
0x37
,
0x61
,
0xc5
}};
const
GUID
IID_IAMTVAudio
=
{
0x83EC1C30
,
0x23D1
,
0x11d1
,
{
0x99
,
0xE6
,
0x00
,
0xA0
,
0xC9
,
0x56
,
0x02
,
0x66
}};
const
GUID
IID_IAMCrossbar
=
{
0xC6E13380
,
0x30AC
,
0x11d0
,
{
0xA1
,
0x8C
,
0x00
,
0xA0
,
0xC9
,
0x11
,
0x89
,
0x56
}};
const
GUID
IID_IAMTVTuner
=
{
0x211A8766
,
0x03AC
,
0x11d1
,
{
0x8D
,
0x13
,
0x00
,
0xAA
,
0x00
,
0xBD
,
0x83
,
0x39
}};
/* http://msdn.microsoft.com/en-us/library/dd373441%28v=vs.85%29.aspx */
/* http://msdn.microsoft.com/en-us/library/dd373441%28v=vs.85%29.aspx */
typedef
enum
tagAMTunerModeType
{
typedef
enum
tagAMTunerModeType
{
AMTUNER_MODE_DEFAULT
=
0x0000
,
AMTUNER_MODE_DEFAULT
=
0x0000
,
...
...
modules/access/dshow/dshow.cpp
View file @
e3e9dc88
...
@@ -45,6 +45,8 @@
...
@@ -45,6 +45,8 @@
#include "common.h"
#include "common.h"
#include "filter.h"
#include "filter.h"
const
GUID
IID_IAMStreamConfig
=
{
0xC6E13340
,
0x30AC
,
0x11d0
,
{
0xA1
,
0x8C
,
0x00
,
0xA0
,
0xC9
,
0x11
,
0x89
,
0x56
}};
/*****************************************************************************
/*****************************************************************************
* Access: local prototypes
* Access: local prototypes
*****************************************************************************/
*****************************************************************************/
...
...
modules/access/dshow/filter.cpp
View file @
e3e9dc88
...
@@ -72,8 +72,6 @@ extern const GUID IID_IMemInputPin;
...
@@ -72,8 +72,6 @@ extern const GUID IID_IMemInputPin;
const
GUID
IID_IEnumPins
=
{
0x56a86892
,
0x0ad4
,
0x11ce
,
{
0xb0
,
0x3a
,
0x00
,
0x20
,
0xaf
,
0x0b
,
0xa7
,
0x70
}};
const
GUID
IID_IEnumPins
=
{
0x56a86892
,
0x0ad4
,
0x11ce
,
{
0xb0
,
0x3a
,
0x00
,
0x20
,
0xaf
,
0x0b
,
0xa7
,
0x70
}};
const
GUID
IID_IEnumMediaTypes
=
{
0x89c31040
,
0x846b
,
0x11ce
,
{
0x97
,
0xd3
,
0x00
,
0xaa
,
0x00
,
0x55
,
0x59
,
0x5a
}};
const
GUID
IID_IEnumMediaTypes
=
{
0x89c31040
,
0x846b
,
0x11ce
,
{
0x97
,
0xd3
,
0x00
,
0xaa
,
0x00
,
0x55
,
0x59
,
0x5a
}};
const
GUID
IID_IAMBufferNegotiation
=
{
0x56ed71a0
,
0xaf5f
,
0x11d0
,
{
0xb3
,
0xf0
,
0x00
,
0xaa
,
0x00
,
0x37
,
0x61
,
0xc5
}};
//const GUID IID_ISpecifyPropertyPages = {0xb196b28b, 0xbab4, 0x101a, {0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07}};
//const GUID IID_ISpecifyPropertyPages = {0xb196b28b, 0xbab4, 0x101a, {0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07}};
extern
const
GUID
IID_ISpecifyPropertyPages
;
extern
const
GUID
IID_ISpecifyPropertyPages
;
...
@@ -85,11 +83,6 @@ const GUID IID_IGraphBuilder = {0x56a868a9, 0x0ad4, 0x11ce, {0xb0, 0x3a
...
@@ -85,11 +83,6 @@ const GUID IID_IGraphBuilder = {0x56a868a9, 0x0ad4, 0x11ce, {0xb0, 0x3a
const
GUID
IID_ICaptureGraphBuilder2
=
{
0x93E5A4E0
,
0x2D50
,
0x11d2
,
{
0xAB
,
0xFA
,
0x00
,
0xA0
,
0xC9
,
0xC6
,
0xE3
,
0x8D
}};
const
GUID
IID_ICaptureGraphBuilder2
=
{
0x93E5A4E0
,
0x2D50
,
0x11d2
,
{
0xAB
,
0xFA
,
0x00
,
0xA0
,
0xC9
,
0xC6
,
0xE3
,
0x8D
}};
const
GUID
IID_IAMTVAudio
=
{
0x83EC1C30
,
0x23D1
,
0x11d1
,
{
0x99
,
0xE6
,
0x00
,
0xA0
,
0xC9
,
0x56
,
0x02
,
0x66
}};
const
GUID
IID_IAMStreamConfig
=
{
0xC6E13340
,
0x30AC
,
0x11d0
,
{
0xA1
,
0x8C
,
0x00
,
0xA0
,
0xC9
,
0x11
,
0x89
,
0x56
}};
const
GUID
IID_IAMCrossbar
=
{
0xC6E13380
,
0x30AC
,
0x11d0
,
{
0xA1
,
0x8C
,
0x00
,
0xA0
,
0xC9
,
0x11
,
0x89
,
0x56
}};
const
GUID
IID_IAMTVTuner
=
{
0x211A8766
,
0x03AC
,
0x11d1
,
{
0x8D
,
0x13
,
0x00
,
0xAA
,
0x00
,
0xBD
,
0x83
,
0x39
}};
const
GUID
IID_IKsPropertySet
=
{
0x31EFAC30
,
0x515C
,
0x11d0
,
{
0xA9
,
0xAA
,
0x00
,
0xAA
,
0x00
,
0x61
,
0xBE
,
0x93
}};
const
GUID
IID_IKsPropertySet
=
{
0x31EFAC30
,
0x515C
,
0x11d0
,
{
0xA9
,
0xAA
,
0x00
,
0xAA
,
0x00
,
0x61
,
0xBE
,
0x93
}};
/* Video Format */
/* Video Format */
...
...
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