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
ac8019df
Commit
ac8019df
authored
Aug 27, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Correct signature/mask info for the GIF codec.
parent
bc62a82f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
image.c
dlls/gdiplus/image.c
+4
-4
No files found.
dlls/gdiplus/image.c
View file @
ac8019df
...
...
@@ -3759,8 +3759,8 @@ static const WCHAR gif_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ',
static
const
WCHAR
gif_extension
[]
=
{
'*'
,
'.'
,
'G'
,
'I'
,
'F'
,
0
};
static
const
WCHAR
gif_mimetype
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'g'
,
'i'
,
'f'
,
0
};
static
const
WCHAR
gif_format
[]
=
{
'G'
,
'I'
,
'F'
,
0
};
static
const
BYTE
gif_sig_pattern
[
4
]
=
"GIF8
"
;
static
const
BYTE
gif_sig_mask
[]
=
{
0xFF
,
0xFF
,
0xFF
,
0xFF
};
static
const
BYTE
gif_sig_pattern
[
12
]
=
"GIF87aGIF89a
"
;
static
const
BYTE
gif_sig_mask
[]
=
{
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
};
static
const
WCHAR
tiff_codecname
[]
=
{
'B'
,
'u'
,
'i'
,
'l'
,
't'
,
'-'
,
'i'
,
'n'
,
' '
,
'T'
,
'I'
,
'F'
,
'F'
,
0
};
static
const
WCHAR
tiff_extension
[]
=
{
'*'
,
'.'
,
'T'
,
'I'
,
'F'
,
'F'
,
';'
,
'*'
,
'.'
,
'T'
,
'I'
,
'F'
,
0
};
...
...
@@ -3847,8 +3847,8 @@ static const struct image_codec codecs[NUM_CODECS] = {
/* MimeType */
gif_mimetype
,
/* Flags */
ImageCodecFlagsDecoder
|
ImageCodecFlagsSupportBitmap
|
ImageCodecFlagsBuiltin
,
/* Version */
1
,
/* SigCount */
1
,
/* SigSize */
4
,
/* SigCount */
2
,
/* SigSize */
6
,
/* SigPattern */
gif_sig_pattern
,
/* SigMask */
gif_sig_mask
,
},
...
...
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