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
892c16e6
Commit
892c16e6
authored
Nov 22, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Reimplement GetFrameCount of the GIF decoder.
parent
47513d95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gifformat.c
dlls/windowscodecs/gifformat.c
+5
-4
No files found.
dlls/windowscodecs/gifformat.c
View file @
892c16e6
...
...
@@ -1241,13 +1241,14 @@ static HRESULT WINAPI GifDecoder_GetFrameCount(IWICBitmapDecoder *iface,
UINT
*
pCount
)
{
GifDecoder
*
This
=
impl_from_IWICBitmapDecoder
(
iface
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pCount
);
if
(
!
This
->
initialized
)
return
WINCODEC_ERR_NOTINITIALIZED
;
if
(
!
pCount
)
return
E_INVALIDARG
;
*
pCount
=
This
->
gif
->
ImageCount
;
EnterCriticalSection
(
&
This
->
lock
);
*
pCount
=
This
->
gif
?
This
->
gif
->
ImageCount
:
0
;
LeaveCriticalSection
(
&
This
->
lock
);
TRACE
(
"
<- %u
\n
"
,
*
pCount
);
TRACE
(
"
(%p) <-- %d
\n
"
,
iface
,
*
pCount
);
return
S_OK
;
}
...
...
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