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
076f348c
Commit
076f348c
authored
Sep 06, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Sep 29, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Remove FIXME / stub! from optional transform methods.
parent
41d98066
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
36 deletions
+35
-36
color_convert.c
dlls/winegstreamer/color_convert.c
+7
-7
h264_decoder.c
dlls/winegstreamer/h264_decoder.c
+7
-7
resampler.c
dlls/winegstreamer/resampler.c
+7
-7
video_processor.c
dlls/winegstreamer/video_processor.c
+7
-7
wma_decoder.c
dlls/winegstreamer/wma_decoder.c
+7
-8
No files found.
dlls/winegstreamer/color_convert.c
View file @
076f348c
...
...
@@ -220,7 +220,7 @@ static HRESULT WINAPI transform_GetStreamCount(IMFTransform *iface, DWORD *input
static
HRESULT
WINAPI
transform_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
{
FIXME
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p stub!
\n
"
,
iface
,
TRACE
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p.
\n
"
,
iface
,
input_size
,
inputs
,
output_size
,
outputs
);
return
E_NOTIMPL
;
}
...
...
@@ -281,31 +281,31 @@ static HRESULT WINAPI transform_GetOutputStreamInfo(IMFTransform *iface, DWORD i
static
HRESULT
WINAPI
transform_GetAttributes
(
IMFTransform
*
iface
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, attributes %p stub!
\n
"
,
iface
,
attributes
);
TRACE
(
"iface %p, attributes %p.
\n
"
,
iface
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetInputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetOutputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_DeleteInputStream
(
IMFTransform
*
iface
,
DWORD
id
)
{
FIXME
(
"iface %p, id %#lx stub!
\n
"
,
iface
,
id
);
TRACE
(
"iface %p, id %#lx.
\n
"
,
iface
,
id
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_AddInputStreams
(
IMFTransform
*
iface
,
DWORD
streams
,
DWORD
*
ids
)
{
FIXME
(
"iface %p, streams %lu, ids %p stub!
\n
"
,
iface
,
streams
,
ids
);
TRACE
(
"iface %p, streams %lu, ids %p.
\n
"
,
iface
,
streams
,
ids
);
return
E_NOTIMPL
;
}
...
...
@@ -525,7 +525,7 @@ static HRESULT WINAPI transform_GetOutputStatus(IMFTransform *iface, DWORD *flag
static
HRESULT
WINAPI
transform_SetOutputBounds
(
IMFTransform
*
iface
,
LONGLONG
lower
,
LONGLONG
upper
)
{
FIXME
(
"iface %p, lower %I64d, upper %I64d stub!
\n
"
,
iface
,
lower
,
upper
);
TRACE
(
"iface %p, lower %I64d, upper %I64d.
\n
"
,
iface
,
lower
,
upper
);
return
E_NOTIMPL
;
}
...
...
dlls/winegstreamer/h264_decoder.c
View file @
076f348c
...
...
@@ -269,10 +269,10 @@ static HRESULT WINAPI transform_GetStreamCount(IMFTransform *iface, DWORD *input
return
S_OK
;
}
static
HRESULT
WINAPI
transform_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
static
HRESULT
WINAPI
transform_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
{
FIXME
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p stub!
\n
"
,
iface
,
TRACE
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p.
\n
"
,
iface
,
input_size
,
inputs
,
output_size
,
outputs
);
return
E_NOTIMPL
;
}
...
...
@@ -327,7 +327,7 @@ static HRESULT WINAPI transform_GetAttributes(IMFTransform *iface, IMFAttributes
static
HRESULT
WINAPI
transform_GetInputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
...
...
@@ -348,13 +348,13 @@ static HRESULT WINAPI transform_GetOutputStreamAttributes(IMFTransform *iface, D
static
HRESULT
WINAPI
transform_DeleteInputStream
(
IMFTransform
*
iface
,
DWORD
id
)
{
FIXME
(
"iface %p, id %#lx stub!
\n
"
,
iface
,
id
);
TRACE
(
"iface %p, id %#lx.
\n
"
,
iface
,
id
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_AddInputStreams
(
IMFTransform
*
iface
,
DWORD
streams
,
DWORD
*
ids
)
{
FIXME
(
"iface %p, streams %lu, ids %p stub!
\n
"
,
iface
,
streams
,
ids
);
TRACE
(
"iface %p, streams %lu, ids %p.
\n
"
,
iface
,
streams
,
ids
);
return
E_NOTIMPL
;
}
...
...
@@ -568,7 +568,7 @@ static HRESULT WINAPI transform_GetOutputStatus(IMFTransform *iface, DWORD *flag
static
HRESULT
WINAPI
transform_SetOutputBounds
(
IMFTransform
*
iface
,
LONGLONG
lower
,
LONGLONG
upper
)
{
FIXME
(
"iface %p, lower %I64d, upper %I64d stub!
\n
"
,
iface
,
lower
,
upper
);
TRACE
(
"iface %p, lower %I64d, upper %I64d.
\n
"
,
iface
,
lower
,
upper
);
return
E_NOTIMPL
;
}
...
...
dlls/winegstreamer/resampler.c
View file @
076f348c
...
...
@@ -183,7 +183,7 @@ static HRESULT WINAPI transform_GetStreamCount(IMFTransform *iface, DWORD *input
static
HRESULT
WINAPI
transform_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
{
FIXME
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p stub!
\n
"
,
iface
,
TRACE
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p.
\n
"
,
iface
,
input_size
,
inputs
,
output_size
,
outputs
);
return
E_NOTIMPL
;
}
...
...
@@ -234,31 +234,31 @@ static HRESULT WINAPI transform_GetOutputStreamInfo(IMFTransform *iface, DWORD i
static
HRESULT
WINAPI
transform_GetAttributes
(
IMFTransform
*
iface
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, attributes %p stub!
\n
"
,
iface
,
attributes
);
TRACE
(
"iface %p, attributes %p.
\n
"
,
iface
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetInputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetOutputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_DeleteInputStream
(
IMFTransform
*
iface
,
DWORD
id
)
{
FIXME
(
"iface %p, id %#lx stub!
\n
"
,
iface
,
id
);
TRACE
(
"iface %p, id %#lx.
\n
"
,
iface
,
id
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_AddInputStreams
(
IMFTransform
*
iface
,
DWORD
streams
,
DWORD
*
ids
)
{
FIXME
(
"iface %p, streams %lu, ids %p stub!
\n
"
,
iface
,
streams
,
ids
);
TRACE
(
"iface %p, streams %lu, ids %p.
\n
"
,
iface
,
streams
,
ids
);
return
E_NOTIMPL
;
}
...
...
@@ -494,7 +494,7 @@ static HRESULT WINAPI transform_GetOutputStatus(IMFTransform *iface, DWORD *flag
static
HRESULT
WINAPI
transform_SetOutputBounds
(
IMFTransform
*
iface
,
LONGLONG
lower
,
LONGLONG
upper
)
{
FIXME
(
"iface %p, lower %I64d, upper %I64d stub!
\n
"
,
iface
,
lower
,
upper
);
TRACE
(
"iface %p, lower %I64d, upper %I64d.
\n
"
,
iface
,
lower
,
upper
);
return
E_NOTIMPL
;
}
...
...
dlls/winegstreamer/video_processor.c
View file @
076f348c
...
...
@@ -184,7 +184,7 @@ static HRESULT WINAPI video_processor_GetStreamCount(IMFTransform *iface, DWORD
static
HRESULT
WINAPI
video_processor_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
{
FIXME
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p stub!
\n
"
,
iface
,
TRACE
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p.
\n
"
,
iface
,
input_size
,
inputs
,
output_size
,
outputs
);
return
E_NOTIMPL
;
}
...
...
@@ -247,7 +247,7 @@ static HRESULT WINAPI video_processor_GetAttributes(IMFTransform *iface, IMFAttr
{
struct
video_processor
*
impl
=
impl_from_IMFTransform
(
iface
);
FIXME
(
"iface %p, attributes %p stub!
\n
"
,
iface
,
attributes
);
FIXME
(
"iface %p, attributes %p s
emi-s
tub!
\n
"
,
iface
,
attributes
);
if
(
!
attributes
)
return
E_POINTER
;
...
...
@@ -258,7 +258,7 @@ static HRESULT WINAPI video_processor_GetAttributes(IMFTransform *iface, IMFAttr
static
HRESULT
WINAPI
video_processor_GetInputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
...
...
@@ -266,7 +266,7 @@ static HRESULT WINAPI video_processor_GetOutputStreamAttributes(IMFTransform *if
{
struct
video_processor
*
impl
=
impl_from_IMFTransform
(
iface
);
FIXME
(
"iface %p, id %#lx, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
FIXME
(
"iface %p, id %#lx, attributes %p s
emi-s
tub!
\n
"
,
iface
,
id
,
attributes
);
if
(
!
attributes
)
return
E_POINTER
;
...
...
@@ -279,13 +279,13 @@ static HRESULT WINAPI video_processor_GetOutputStreamAttributes(IMFTransform *if
static
HRESULT
WINAPI
video_processor_DeleteInputStream
(
IMFTransform
*
iface
,
DWORD
id
)
{
FIXME
(
"iface %p, id %#lx stub!
\n
"
,
iface
,
id
);
TRACE
(
"iface %p, id %#lx.
\n
"
,
iface
,
id
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
video_processor_AddInputStreams
(
IMFTransform
*
iface
,
DWORD
streams
,
DWORD
*
ids
)
{
FIXME
(
"iface %p, streams %lu, ids %p stub!
\n
"
,
iface
,
streams
,
ids
);
TRACE
(
"iface %p, streams %lu, ids %p.
\n
"
,
iface
,
streams
,
ids
);
return
E_NOTIMPL
;
}
...
...
@@ -510,7 +510,7 @@ static HRESULT WINAPI video_processor_GetOutputStatus(IMFTransform *iface, DWORD
static
HRESULT
WINAPI
video_processor_SetOutputBounds
(
IMFTransform
*
iface
,
LONGLONG
lower
,
LONGLONG
upper
)
{
FIXME
(
"iface %p, lower %I64d, upper %I64d stub!
\n
"
,
iface
,
lower
,
upper
);
TRACE
(
"iface %p, lower %I64d, upper %I64d.
\n
"
,
iface
,
lower
,
upper
);
return
E_NOTIMPL
;
}
...
...
dlls/winegstreamer/wma_decoder.c
View file @
076f348c
...
...
@@ -193,7 +193,7 @@ static HRESULT WINAPI transform_GetStreamCount(IMFTransform *iface, DWORD *input
static
HRESULT
WINAPI
transform_GetStreamIDs
(
IMFTransform
*
iface
,
DWORD
input_size
,
DWORD
*
inputs
,
DWORD
output_size
,
DWORD
*
outputs
)
{
FIXME
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p stub!
\n
"
,
iface
,
TRACE
(
"iface %p, input_size %lu, inputs %p, output_size %lu, outputs %p.
\n
"
,
iface
,
input_size
,
inputs
,
output_size
,
outputs
);
return
E_NOTIMPL
;
}
...
...
@@ -246,31 +246,31 @@ static HRESULT WINAPI transform_GetOutputStreamInfo(IMFTransform *iface, DWORD i
static
HRESULT
WINAPI
transform_GetAttributes
(
IMFTransform
*
iface
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, attributes %p stub!
\n
"
,
iface
,
attributes
);
TRACE
(
"iface %p, attributes %p.
\n
"
,
iface
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetInputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %lu, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_GetOutputStreamAttributes
(
IMFTransform
*
iface
,
DWORD
id
,
IMFAttributes
**
attributes
)
{
FIXME
(
"iface %p, id %lu, attributes %p stub!
\n
"
,
iface
,
id
,
attributes
);
TRACE
(
"iface %p, id %#lx, attributes %p.
\n
"
,
iface
,
id
,
attributes
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_DeleteInputStream
(
IMFTransform
*
iface
,
DWORD
id
)
{
FIXME
(
"iface %p, id %lu stub!
\n
"
,
iface
,
id
);
TRACE
(
"iface %p, id %#lx.
\n
"
,
iface
,
id
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
transform_AddInputStreams
(
IMFTransform
*
iface
,
DWORD
streams
,
DWORD
*
ids
)
{
FIXME
(
"iface %p, streams %lu, ids %p stub!
\n
"
,
iface
,
streams
,
ids
);
TRACE
(
"iface %p, streams %lu, ids %p.
\n
"
,
iface
,
streams
,
ids
);
return
E_NOTIMPL
;
}
...
...
@@ -511,8 +511,7 @@ static HRESULT WINAPI transform_GetOutputStatus(IMFTransform *iface, DWORD *flag
static
HRESULT
WINAPI
transform_SetOutputBounds
(
IMFTransform
*
iface
,
LONGLONG
lower
,
LONGLONG
upper
)
{
FIXME
(
"iface %p, lower %s, upper %s stub!
\n
"
,
iface
,
wine_dbgstr_longlong
(
lower
),
wine_dbgstr_longlong
(
upper
));
TRACE
(
"iface %p, lower %I64d, upper %I64d.
\n
"
,
iface
,
lower
,
upper
);
return
E_NOTIMPL
;
}
...
...
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