Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1ee773bd
Commit
1ee773bd
authored
May 23, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
May 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
axextend.idl: Added VIDEO_STREAM_CONFIG_CAPS and AUDIO_STREAM_CONFIG_CAPS declarations.
parent
7c06862c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
axextend.idl
include/axextend.idl
+37
-0
No files found.
include/axextend.idl
View file @
1ee773bd
...
...
@@ -791,6 +791,43 @@ interface IStreamBuilder : IUnknown
]
interface
IAMStreamConfig
:
IUnknown
{
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
;
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
;
HRESULT
SetFormat
(
[
in
]
AM_MEDIA_TYPE
*
pmt
)
;
HRESULT
GetFormat
(
[
in
]
AM_MEDIA_TYPE
**
pmt
)
;
HRESULT
GetNumberOfCapabilities
(
[
out
]
int
*
piCount
,
[
out
]
int
*
piSize
)
;
...
...
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