Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
c20eab5c
Commit
c20eab5c
authored
Mar 24, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/msrledec: More verbose error message
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f7e1367f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
msrledec.c
libavcodec/msrledec.c
+1
-1
No files found.
libavcodec/msrledec.c
View file @
c20eab5c
...
@@ -97,7 +97,7 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
...
@@ -97,7 +97,7 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
// decode a run of data
// decode a run of data
if
(
pixel_ptr
+
rle_code
>
avctx
->
width
+
1
)
{
if
(
pixel_ptr
+
rle_code
>
avctx
->
width
+
1
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"MS RLE: frame ptr just went out of bounds (run)
\n
"
);
"MS RLE: frame ptr just went out of bounds (run)
%d %d %d
\n
"
,
pixel_ptr
,
rle_code
,
avctx
->
width
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
stream_byte
=
bytestream2_get_byte
(
gb
);
stream_byte
=
bytestream2_get_byte
(
gb
);
...
...
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