Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
6f9160a3
Commit
6f9160a3
authored
Feb 22, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DShow: add VIDEO_STREAM_CONFIG_CAPS and AUDIO_STREAM_CONFIG_CAPS def
parent
f166efdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
1 deletion
+40
-1
modules/access/dshow/common.h
modules/access/dshow/common.h
+40
-1
No files found.
modules/access/dshow/common.h
View file @
6f9160a3
...
...
@@ -227,6 +227,7 @@ typedef enum tagAMTunerModeType {
AMTUNER_MODE_DSS
=
0x0008
}
AMTunerModeType
;
#define AMPROPERTY_PIN_CATEGORY 0
typedef
enum
tagAMTunerSubChannel
{
AMTUNER_SUBCHAN_NO_TUNE
=
-
2
,
AMTUNER_SUBCHAN_DEFAULT
=
-
1
...
...
@@ -238,4 +239,42 @@ typedef enum tagTunerInputType {
TunerInputAntenna
=
TunerInputCable
+
1
}
TunerInputType
;
#define AMPROPERTY_PIN_CATEGORY 0
/* http://msdn.microsoft.com/en-us/library/dd407352%28v=vs.85%29.aspx */
typedef
struct
_VIDEO_STREAM_CONFIG_CAPS
{
GUID
guid
;
ULONG
VideoStandard
;
SIZE
InputSize
;
SIZE
MinCroppingSize
;
SIZE
MaxCroppingSize
;
int
CropGranularityX
;
int
CropGranularityY
;
int
CropAlignX
;
int
CropAlignY
;
SIZE
MinOutputSize
;
SIZE
MaxOutputSize
;
int
OutputGranularityX
;
int
OutputGranularityY
;
int
StretchTapsX
;
int
StretchTapsY
;
int
ShrinkTapsX
;
int
ShrinkTapsY
;
LONGLONG
MinFrameInterval
;
LONGLONG
MaxFrameInterval
;
LONG
MinBitsPerSecond
;
LONG
MaxBitsPerSecond
;
}
VIDEO_STREAM_CONFIG_CAPS
;
/* http://msdn.microsoft.com/en-us/library/dd317597%28v=vs.85%29.aspx */
typedef
struct
_AUDIO_STREAM_CONFIG_CAPS
{
GUID
guid
;
ULONG
MinimumChannels
;
ULONG
MaximumChannels
;
ULONG
ChannelsGranularity
;
ULONG
MinimumBitsPerSample
;
ULONG
MaximumBitsPerSample
;
ULONG
BitsPerSampleGranularity
;
ULONG
MinimumSampleFrequency
;
ULONG
MaximumSampleFrequency
;
ULONG
SampleFrequencyGranularity
;
}
AUDIO_STREAM_CONFIG_CAPS
;
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