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
b5815f1d
Commit
b5815f1d
authored
May 11, 2018
by
Zebediah Figura
Committed by
Alexandre Julliard
May 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mp3dmod: Implement ProcessInput().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0c14a85d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
3 deletions
+31
-3
mp3dmod.c
dlls/mp3dmod/mp3dmod.c
+31
-3
No files found.
dlls/mp3dmod/mp3dmod.c
View file @
b5815f1d
...
...
@@ -41,6 +41,7 @@ struct mp3_decoder {
LONG
ref
;
mpg123_handle
*
mh
;
DMO_MEDIA_TYPE
outtype
;
IMediaBuffer
*
buffer
;
};
static
inline
struct
mp3_decoder
*
impl_from_IMediaObject
(
IMediaObject
*
iface
)
...
...
@@ -256,10 +257,36 @@ static HRESULT WINAPI MediaObject_GetInputStatus(IMediaObject *iface, DWORD inde
static
HRESULT
WINAPI
MediaObject_ProcessInput
(
IMediaObject
*
iface
,
DWORD
index
,
IMediaBuffer
*
buffer
,
DWORD
flags
,
REFERENCE_TIME
timestamp
,
REFERENCE_TIME
timelength
)
{
FIXME
(
"(%p)->(%d, %p, %#x, %s, %s) stub!
\n
"
,
iface
,
index
,
buffer
,
flags
,
struct
mp3_decoder
*
This
=
impl_from_IMediaObject
(
iface
);
HRESULT
hr
;
BYTE
*
data
;
DWORD
len
;
int
err
;
TRACE
(
"(%p)->(%d, %p, %#x, %s, %s)
\n
"
,
iface
,
index
,
buffer
,
flags
,
wine_dbgstr_longlong
(
timestamp
),
wine_dbgstr_longlong
(
timelength
));
return
E_NOTIMPL
;
if
(
This
->
buffer
)
{
ERR
(
"Already have a buffer.
\n
"
);
return
DMO_E_NOTACCEPTING
;
}
IMediaBuffer_AddRef
(
buffer
);
This
->
buffer
=
buffer
;
hr
=
IMediaBuffer_GetBufferAndLength
(
buffer
,
&
data
,
&
len
);
if
(
FAILED
(
hr
))
return
hr
;
err
=
mpg123_feed
(
This
->
mh
,
data
,
len
);
if
(
err
!=
MPG123_OK
)
{
ERR
(
"mpg123_feed() failed: %s
\n
"
,
mpg123_strerror
(
This
->
mh
));
return
E_FAIL
;
}
return
S_OK
;
}
static
HRESULT
WINAPI
MediaObject_ProcessOutput
(
IMediaObject
*
iface
,
DWORD
flags
,
DWORD
count
,
DMO_OUTPUT_DATA_BUFFER
*
buffers
,
DWORD
*
status
)
...
...
@@ -308,7 +335,7 @@ static HRESULT create_mp3_decoder(REFIID iid, void **obj)
struct
mp3_decoder
*
This
;
int
err
;
if
(
!
(
This
=
heap_alloc
(
sizeof
(
*
This
))))
if
(
!
(
This
=
heap_alloc
_zero
(
sizeof
(
*
This
))))
return
E_OUTOFMEMORY
;
This
->
IMediaObject_iface
.
lpVtbl
=
&
IMediaObject_vtbl
;
...
...
@@ -316,6 +343,7 @@ static HRESULT create_mp3_decoder(REFIID iid, void **obj)
mpg123_init
();
This
->
mh
=
mpg123_new
(
NULL
,
&
err
);
mpg123_open_feed
(
This
->
mh
);
mpg123_format_none
(
This
->
mh
);
return
IMediaObject_QueryInterface
(
&
This
->
IMediaObject_iface
,
iid
,
obj
);
...
...
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