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
d7eb8f90
Commit
d7eb8f90
authored
Apr 23, 2014
by
Derek Buitenhuis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fic: Make warning message more accurate
Signed-off-by:
Derek Buitenhuis
<
derek.buitenhuis@gmail.com
>
parent
7596fc3d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
fic.c
libavcodec/fic.c
+3
-1
No files found.
libavcodec/fic.c
View file @
d7eb8f90
...
@@ -296,7 +296,9 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -296,7 +296,9 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
/* Skip cursor data. */
/* Skip cursor data. */
tsize
=
AV_RB24
(
src
+
24
);
tsize
=
AV_RB24
(
src
+
24
);
if
(
tsize
>
avpkt
->
size
-
FIC_HEADER_SIZE
)
{
if
(
tsize
>
avpkt
->
size
-
FIC_HEADER_SIZE
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Invalid cursor data size.
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Packet is too small to contain cursor (%d vs %d bytes).
\n
"
,
tsize
,
avpkt
->
size
-
FIC_HEADER_SIZE
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
...
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