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
98abb98c
Commit
98abb98c
authored
Nov 14, 2014
by
Benoit Fouet
Committed by
Michael Niedermayer
Nov 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/pngdec: rename decode_frame to decode_frame_png
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b186b713
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pngdec.c
libavcodec/pngdec.c
+2
-2
No files found.
libavcodec/pngdec.c
View file @
98abb98c
...
@@ -519,7 +519,7 @@ static int decode_text_chunk(PNGDecContext *s, uint32_t length, int compressed,
...
@@ -519,7 +519,7 @@ static int decode_text_chunk(PNGDecContext *s, uint32_t length, int compressed,
return
0
;
return
0
;
}
}
static
int
decode_frame
(
AVCodecContext
*
avctx
,
static
int
decode_frame
_png
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
void
*
data
,
int
*
got_frame
,
AVPacket
*
avpkt
)
AVPacket
*
avpkt
)
{
{
...
@@ -952,7 +952,7 @@ AVCodec ff_png_decoder = {
...
@@ -952,7 +952,7 @@ AVCodec ff_png_decoder = {
.
priv_data_size
=
sizeof
(
PNGDecContext
),
.
priv_data_size
=
sizeof
(
PNGDecContext
),
.
init
=
png_dec_init
,
.
init
=
png_dec_init
,
.
close
=
png_dec_end
,
.
close
=
png_dec_end
,
.
decode
=
decode_frame
,
.
decode
=
decode_frame
_png
,
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
png_dec_init
),
.
init_thread_copy
=
ONLY_IF_THREADS_ENABLED
(
png_dec_init
),
.
update_thread_context
=
ONLY_IF_THREADS_ENABLED
(
update_thread_context
),
.
update_thread_context
=
ONLY_IF_THREADS_ENABLED
(
update_thread_context
),
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
/*| CODEC_CAP_DRAW_HORIZ_BAND*/
,
.
capabilities
=
CODEC_CAP_DR1
|
CODEC_CAP_FRAME_THREADS
/*| CODEC_CAP_DRAW_HORIZ_BAND*/
,
...
...
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