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
f5847da7
Commit
f5847da7
authored
Jun 10, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Apr 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement JpegEncoder_Frame_SetSize.
parent
1ce8a66e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
jpegformat.c
dlls/windowscodecs/jpegformat.c
+21
-2
No files found.
dlls/windowscodecs/jpegformat.c
View file @
f5847da7
...
...
@@ -711,6 +711,8 @@ typedef struct JpegEncoder {
int
initialized
;
int
frame_count
;
int
frame_initialized
;
int
started_compress
;
UINT
width
,
height
;
IStream
*
stream
;
CRITICAL_SECTION
lock
;
BYTE
dest_buffer
[
1024
];
...
...
@@ -834,8 +836,23 @@ static HRESULT WINAPI JpegEncoder_Frame_Initialize(IWICBitmapFrameEncode *iface,
static
HRESULT
WINAPI
JpegEncoder_Frame_SetSize
(
IWICBitmapFrameEncode
*
iface
,
UINT
uiWidth
,
UINT
uiHeight
)
{
FIXME
(
"(%p,%u,%u): stub
\n
"
,
iface
,
uiWidth
,
uiHeight
);
return
E_NOTIMPL
;
JpegEncoder
*
This
=
impl_from_IWICBitmapFrameEncode
(
iface
);
TRACE
(
"(%p,%u,%u)
\n
"
,
iface
,
uiWidth
,
uiHeight
);
EnterCriticalSection
(
&
This
->
lock
);
if
(
!
This
->
frame_initialized
||
This
->
started_compress
)
{
LeaveCriticalSection
(
&
This
->
lock
);
return
WINCODEC_ERR_WRONGSTATE
;
}
This
->
width
=
uiWidth
;
This
->
height
=
uiHeight
;
LeaveCriticalSection
(
&
This
->
lock
);
return
S_OK
;
}
static
HRESULT
WINAPI
JpegEncoder_Frame_SetResolution
(
IWICBitmapFrameEncode
*
iface
,
...
...
@@ -1154,6 +1171,8 @@ HRESULT JpegEncoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
This
->
initialized
=
0
;
This
->
frame_count
=
0
;
This
->
frame_initialized
=
0
;
This
->
started_compress
=
0
;
This
->
width
=
This
->
height
=
0
;
This
->
stream
=
NULL
;
InitializeCriticalSection
(
&
This
->
lock
);
This
->
lock
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": JpegEncoder.lock"
);
...
...
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