Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
5c09a11e
Commit
5c09a11e
authored
Apr 26, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Apr 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Add stubbed implementation of AudioStreamSample.
parent
60a8a27b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
150 additions
and
4 deletions
+150
-4
mediastream.c
dlls/amstream/mediastream.c
+148
-2
amstream.c
dlls/amstream/tests/amstream.c
+2
-2
No files found.
dlls/amstream/mediastream.c
View file @
5c09a11e
...
...
@@ -33,6 +33,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
amstream
);
static
HRESULT
ddrawstreamsample_create
(
IDirectDrawMediaStream
*
parent
,
IDirectDrawStreamSample
**
ddraw_stream_sample
);
static
HRESULT
audiostreamsample_create
(
IAudioMediaStream
*
parent
,
IAudioData
*
audio_data
,
IAudioStreamSample
**
audio_stream_sample
);
typedef
struct
{
IDirectDrawMediaStream
IDirectDrawMediaStream_iface
;
...
...
@@ -407,9 +408,12 @@ static HRESULT WINAPI IAudioMediaStreamImpl_CreateSample(IAudioMediaStream *ifac
{
IAudioMediaStreamImpl
*
This
=
impl_from_IAudioMediaStream
(
iface
);
FIXME
(
"(%p/%p)->(%p,%u,%p) stub!
\n
"
,
iface
,
This
,
audio_data
,
flags
,
sample
);
TRACE
(
"(%p/%p)->(%p,%u,%p)
\n
"
,
iface
,
This
,
audio_data
,
flags
,
sample
);
return
E_NOTIMPL
;
if
(
!
audio_data
)
return
E_POINTER
;
return
audiostreamsample_create
(
iface
,
audio_data
,
sample
);
}
static
const
struct
IAudioMediaStreamVtbl
AudioMediaStream_Vtbl
=
...
...
@@ -605,3 +609,145 @@ static HRESULT ddrawstreamsample_create(IDirectDrawMediaStream *parent, IDirectD
return
S_OK
;
}
typedef
struct
{
IAudioStreamSample
IAudioStreamSample_iface
;
LONG
ref
;
IMediaStream
*
parent
;
IAudioData
*
audio_data
;
}
IAudioStreamSampleImpl
;
static
inline
IAudioStreamSampleImpl
*
impl_from_IAudioStreamSample
(
IAudioStreamSample
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IAudioStreamSampleImpl
,
IAudioStreamSample_iface
);
}
/*** IUnknown methods ***/
static
HRESULT
WINAPI
IAudioStreamSampleImpl_QueryInterface
(
IAudioStreamSample
*
iface
,
REFIID
riid
,
void
**
ret_iface
)
{
TRACE
(
"(%p)->(%s,%p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ret_iface
);
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IStreamSample
)
||
IsEqualGUID
(
riid
,
&
IID_IAudioStreamSample
))
{
IAudioStreamSample_AddRef
(
iface
);
*
ret_iface
=
iface
;
return
S_OK
;
}
*
ret_iface
=
NULL
;
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
iface
,
debugstr_guid
(
riid
),
ret_iface
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
IAudioStreamSampleImpl_AddRef
(
IAudioStreamSample
*
iface
)
{
IAudioStreamSampleImpl
*
This
=
impl_from_IAudioStreamSample
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(): new ref = %u
\n
"
,
iface
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
IAudioStreamSampleImpl_Release
(
IAudioStreamSample
*
iface
)
{
IAudioStreamSampleImpl
*
This
=
impl_from_IAudioStreamSample
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(): new ref = %u
\n
"
,
iface
,
ref
);
if
(
!
ref
)
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
ref
;
}
/*** IStreamSample methods ***/
static
HRESULT
WINAPI
IAudioStreamSampleImpl_GetMediaStream
(
IAudioStreamSample
*
iface
,
IMediaStream
**
media_stream
)
{
FIXME
(
"(%p)->(%p): stub
\n
"
,
iface
,
media_stream
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAudioStreamSampleImpl_GetSampleTimes
(
IAudioStreamSample
*
iface
,
STREAM_TIME
*
start_time
,
STREAM_TIME
*
end_time
,
STREAM_TIME
*
current_time
)
{
FIXME
(
"(%p)->(%p,%p,%p): stub
\n
"
,
iface
,
start_time
,
end_time
,
current_time
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAudioStreamSampleImpl_SetSampleTimes
(
IAudioStreamSample
*
iface
,
const
STREAM_TIME
*
start_time
,
const
STREAM_TIME
*
end_time
)
{
FIXME
(
"(%p)->(%p,%p): stub
\n
"
,
iface
,
start_time
,
end_time
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAudioStreamSampleImpl_Update
(
IAudioStreamSample
*
iface
,
DWORD
flags
,
HANDLE
event
,
PAPCFUNC
func_APC
,
DWORD
APC_data
)
{
FIXME
(
"(%p)->(%x,%p,%p,%u): stub
\n
"
,
iface
,
flags
,
event
,
func_APC
,
APC_data
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAudioStreamSampleImpl_CompletionStatus
(
IAudioStreamSample
*
iface
,
DWORD
flags
,
DWORD
milliseconds
)
{
FIXME
(
"(%p)->(%x,%u): stub
\n
"
,
iface
,
flags
,
milliseconds
);
return
E_NOTIMPL
;
}
/*** IAudioStreamSample methods ***/
static
HRESULT
WINAPI
IAudioStreamSampleImpl_GetAudioData
(
IAudioStreamSample
*
iface
,
IAudioData
**
audio_data
)
{
FIXME
(
"(%p)->(%p): stub
\n
"
,
iface
,
audio_data
);
return
E_NOTIMPL
;
}
static
const
struct
IAudioStreamSampleVtbl
AudioStreamSample_Vtbl
=
{
/*** IUnknown methods ***/
IAudioStreamSampleImpl_QueryInterface
,
IAudioStreamSampleImpl_AddRef
,
IAudioStreamSampleImpl_Release
,
/*** IStreamSample methods ***/
IAudioStreamSampleImpl_GetMediaStream
,
IAudioStreamSampleImpl_GetSampleTimes
,
IAudioStreamSampleImpl_SetSampleTimes
,
IAudioStreamSampleImpl_Update
,
IAudioStreamSampleImpl_CompletionStatus
,
/*** IAudioStreamSample methods ***/
IAudioStreamSampleImpl_GetAudioData
};
static
HRESULT
audiostreamsample_create
(
IAudioMediaStream
*
parent
,
IAudioData
*
audio_data
,
IAudioStreamSample
**
audio_stream_sample
)
{
IAudioStreamSampleImpl
*
object
;
TRACE
(
"(%p)
\n
"
,
audio_stream_sample
);
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IAudioStreamSampleImpl
));
if
(
!
object
)
{
ERR
(
"Out of memory
\n
"
);
return
E_OUTOFMEMORY
;
}
object
->
IAudioStreamSample_iface
.
lpVtbl
=
&
AudioStreamSample_Vtbl
;
object
->
ref
=
1
;
object
->
parent
=
(
IMediaStream
*
)
parent
;
object
->
audio_data
=
audio_data
;
*
audio_stream_sample
=
(
IAudioStreamSample
*
)
&
object
->
IAudioStreamSample_iface
;
return
S_OK
;
}
dlls/amstream/tests/amstream.c
View file @
5c09a11e
...
...
@@ -337,9 +337,9 @@ static void test_media_streams(void)
ok
(
hr
==
S_OK
,
"CoCreateInstance returned: %x
\n
"
,
hr
);
hr
=
IAudioMediaStream_CreateSample
(
audio_media_stream
,
NULL
,
0
,
&
audio_sample
);
todo_wine
ok
(
hr
==
E_POINTER
,
"IAudioMediaStream_CreateSample returned: %x
\n
"
,
hr
);
ok
(
hr
==
E_POINTER
,
"IAudioMediaStream_CreateSample returned: %x
\n
"
,
hr
);
hr
=
IAudioMediaStream_CreateSample
(
audio_media_stream
,
audio_data
,
0
,
&
audio_sample
);
todo_wine
ok
(
hr
==
S_OK
,
"IAudioMediaStream_CreateSample returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IAudioMediaStream_CreateSample returned: %x
\n
"
,
hr
);
if
(
audio_data
)
IAudioData_Release
(
audio_data
);
...
...
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