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
17fecb4a
Commit
17fecb4a
authored
Oct 24, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flashsv: Drop unused function and struct parameters
parent
00dd9a6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
flashsv.c
libavcodec/flashsv.c
+4
-6
No files found.
libavcodec/flashsv.c
View file @
17fecb4a
...
...
@@ -45,7 +45,6 @@
typedef
struct
BlockInfo
{
uint8_t
*
pos
;
int
size
;
int
unp_size
;
}
BlockInfo
;
typedef
struct
FlashSVContext
{
...
...
@@ -121,8 +120,7 @@ static av_cold int flashsv_decode_init(AVCodecContext *avctx)
}
static
int
flashsv2_prime
(
FlashSVContext
*
s
,
uint8_t
*
src
,
int
size
,
int
unp_size
)
static
int
flashsv2_prime
(
FlashSVContext
*
s
,
uint8_t
*
src
,
int
size
)
{
z_stream
zs
;
int
zret
;
// Zlib return code
...
...
@@ -173,8 +171,9 @@ static int flashsv_decode_block(AVCodecContext *avctx, AVPacket *avpkt,
return
AVERROR_UNKNOWN
;
}
if
(
s
->
zlibprime_curr
||
s
->
zlibprime_prev
)
{
ret
=
flashsv2_prime
(
s
,
s
->
blocks
[
blk_idx
].
pos
,
s
->
blocks
[
blk_idx
].
size
,
s
->
blocks
[
blk_idx
].
unp_size
);
ret
=
flashsv2_prime
(
s
,
s
->
blocks
[
blk_idx
].
pos
,
s
->
blocks
[
blk_idx
].
size
);
if
(
ret
<
0
)
return
ret
;
}
...
...
@@ -196,7 +195,6 @@ static int flashsv_decode_block(AVCodecContext *avctx, AVPacket *avpkt,
if
(
s
->
is_keyframe
)
{
s
->
blocks
[
blk_idx
].
pos
=
s
->
keyframedata
+
(
get_bits_count
(
gb
)
/
8
);
s
->
blocks
[
blk_idx
].
size
=
block_size
;
s
->
blocks
[
blk_idx
].
unp_size
=
s
->
block_size
*
3
-
s
->
zstream
.
avail_out
;
}
if
(
!
s
->
color_depth
)
{
/* Flash Screen Video stores the image upside down, so copy
...
...
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