Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a7fb3a96
Commit
a7fb3a96
authored
Oct 22, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused variables
Originally committed as revision 6764 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
1e22f00d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gifdec.c
libavcodec/gifdec.c
+3
-3
No files found.
libavcodec/gifdec.c
View file @
a7fb3a96
...
...
@@ -224,8 +224,8 @@ static int GLZWDecode(GifState * s, uint8_t * buf, int len)
static
int
gif_read_image
(
GifState
*
s
)
{
int
left
,
top
,
width
,
height
,
bits_per_pixel
,
code_size
,
flags
;
int
is_interleaved
,
has_local_palette
,
y
,
x
,
pass
,
y1
,
linesize
,
n
,
i
;
uint8_t
*
ptr
,
*
line
,
*
d
,
*
spal
,
*
palette
,
*
sptr
,
*
ptr1
;
int
is_interleaved
,
has_local_palette
,
y
,
pass
,
y1
,
linesize
,
n
,
i
;
uint8_t
*
ptr
,
*
line
,
*
spal
,
*
palette
,
*
ptr1
;
left
=
bytestream_get_le16
(
&
s
->
bytestream
);
top
=
bytestream_get_le16
(
&
s
->
bytestream
);
...
...
@@ -369,7 +369,7 @@ static int gif_read_extension(GifState *s)
static
int
gif_read_header1
(
GifState
*
s
)
{
uint8_t
sig
[
6
];
int
ret
,
v
,
n
;
int
v
,
n
;
int
has_global_palette
;
/* read gif signature */
...
...
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