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
23e17310
Commit
23e17310
authored
May 24, 2010
by
Matteo Bruni
Committed by
Alexandre Julliard
Jul 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Reset the stream pointer when initializing JPEG decoder.
parent
5d6baf64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
jpegformat.c
dlls/windowscodecs/jpegformat.c
+4
-0
No files found.
dlls/windowscodecs/jpegformat.c
View file @
23e17310
...
...
@@ -226,6 +226,7 @@ static HRESULT WINAPI JpegDecoder_Initialize(IWICBitmapDecoder *iface, IStream *
{
JpegDecoder
*
This
=
(
JpegDecoder
*
)
iface
;
int
ret
;
LARGE_INTEGER
seek
;
TRACE
(
"(%p,%p,%u)
\n
"
,
iface
,
pIStream
,
cacheOptions
);
EnterCriticalSection
(
&
This
->
lock
);
...
...
@@ -245,6 +246,9 @@ static HRESULT WINAPI JpegDecoder_Initialize(IWICBitmapDecoder *iface, IStream *
This
->
stream
=
pIStream
;
IStream_AddRef
(
pIStream
);
seek
.
QuadPart
=
0
;
IStream_Seek
(
This
->
stream
,
seek
,
STREAM_SEEK_SET
,
NULL
);
This
->
source_mgr
.
bytes_in_buffer
=
0
;
This
->
source_mgr
.
init_source
=
source_mgr_init_source
;
This
->
source_mgr
.
fill_input_buffer
=
source_mgr_fill_input_buffer
;
...
...
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