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
33c9aab4
Commit
33c9aab4
authored
Feb 02, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dshow: remove non standard extensions from header
parent
7a081904
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+3
-0
modules/access/dshow/filter.cpp
modules/access/dshow/filter.cpp
+5
-0
modules/access/dshow/vlc_dshow.h
modules/access/dshow/vlc_dshow.h
+0
-6
No files found.
modules/access/dshow/dshow.cpp
View file @
33c9aab4
...
@@ -51,6 +51,9 @@
...
@@ -51,6 +51,9 @@
#include "access.h"
#include "access.h"
#include "filter.h"
#include "filter.h"
#define INSTANCEDATA_OF_PROPERTY_PTR(x) ((PKSPROPERTY((x))) + 1)
#define INSTANCEDATA_OF_PROPERTY_SIZE(x) (sizeof((x)) - sizeof(KSPROPERTY))
/*****************************************************************************
/*****************************************************************************
* Access: local prototypes
* Access: local prototypes
*****************************************************************************/
*****************************************************************************/
...
...
modules/access/dshow/filter.cpp
View file @
33c9aab4
...
@@ -41,6 +41,11 @@
...
@@ -41,6 +41,11 @@
#include "filter.h"
#include "filter.h"
#include "vlc_dshow.h"
#include "vlc_dshow.h"
#include <initguid.h>
DEFINE_GUID
(
MEDIASUBTYPE_HDYC
,
0x43594448
/* CYDH */
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
MEDIASUBTYPE_DIVX
,
0x58564944
/* XVID */
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
#define DEBUG_DSHOW 1
#define DEBUG_DSHOW 1
#define FILTER_NAME L"VideoLAN Capture Filter"
#define FILTER_NAME L"VideoLAN Capture Filter"
...
...
modules/access/dshow/vlc_dshow.h
View file @
33c9aab4
...
@@ -45,9 +45,6 @@
...
@@ -45,9 +45,6 @@
#include <dshow.h>
#include <dshow.h>
#define INSTANCEDATA_OF_PROPERTY_PTR(x) ((PKSPROPERTY((x))) + 1)
#define INSTANCEDATA_OF_PROPERTY_SIZE(x) (sizeof((x)) - sizeof(KSPROPERTY))
#ifndef VLC_DSHOW_H
#ifndef VLC_DSHOW_H
#define VLC_DSHOW_H
#define VLC_DSHOW_H
...
@@ -67,7 +64,6 @@ MEDIASUBTYPEs and FORMAT */
...
@@ -67,7 +64,6 @@ MEDIASUBTYPEs and FORMAT */
DEFINE_GUID
(
MEDIASUBTYPE_ARGB32
,
0x773c9ac0
,
0x3274
,
0x11d0
,
0xb7
,
0x24
,
0x0
,
0xaa
,
0x0
,
0x6c
,
0x1a
,
0x1
);
DEFINE_GUID
(
MEDIASUBTYPE_ARGB32
,
0x773c9ac0
,
0x3274
,
0x11d0
,
0xb7
,
0x24
,
0x0
,
0xaa
,
0x0
,
0x6c
,
0x1a
,
0x1
);
/* Packed YUV formats */
/* Packed YUV formats */
DEFINE_GUID
(
MEDIASUBTYPE_YUYV
,
0x56595559
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
MEDIASUBTYPE_YUYV
,
0x56595559
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
MEDIASUBTYPE_HDYC
,
0x43594448
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
/* Planar YUV formats */
/* Planar YUV formats */
DEFINE_GUID
(
MEDIASUBTYPE_IYUV
,
0x56555949
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
/* identical to YV12 */
DEFINE_GUID
(
MEDIASUBTYPE_IYUV
,
0x56555949
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
/* identical to YV12 */
DEFINE_GUID
(
MEDIASUBTYPE_I420
,
0x30323449
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
MEDIASUBTYPE_I420
,
0x30323449
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
...
@@ -76,8 +72,6 @@ DEFINE_GUID(MEDIASUBTYPE_MPEG2_VIDEO ,0xe06d8026, 0xdb46, 0x11cf, 0xb4, 0xd1
...
@@ -76,8 +72,6 @@ DEFINE_GUID(MEDIASUBTYPE_MPEG2_VIDEO ,0xe06d8026, 0xdb46, 0x11cf, 0xb4, 0xd1
DEFINE_GUID
(
MEDIASUBTYPE_MPEG2_PROGRAM
,
0xe06d8022
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
DEFINE_GUID
(
MEDIASUBTYPE_MPEG2_PROGRAM
,
0xe06d8022
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
DEFINE_GUID
(
MEDIASUBTYPE_MPEG2_TRANSPORT
,
0xe06d8023
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
DEFINE_GUID
(
MEDIASUBTYPE_MPEG2_TRANSPORT
,
0xe06d8023
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
DEFINE_GUID
(
FORMAT_MPEG2Video
,
0xe06d80e3
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
DEFINE_GUID
(
FORMAT_MPEG2Video
,
0xe06d80e3
,
0xdb46
,
0x11cf
,
0xb4
,
0xd1
,
0x00
,
0x80
,
0x5f
,
0x6c
,
0xbb
,
0xea
);
/* DivX formats */
DEFINE_GUID
(
MEDIASUBTYPE_DIVX
,
0x58564944
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
/* float */
/* float */
DEFINE_GUID
(
MEDIASUBTYPE_IEEE_FLOAT
,
0x00000003
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
DEFINE_GUID
(
MEDIASUBTYPE_IEEE_FLOAT
,
0x00000003
,
0x0000
,
0x0010
,
0x80
,
0x00
,
0x00
,
0xaa
,
0x00
,
0x38
,
0x9b
,
0x71
);
...
...
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