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
313da47a
Commit
313da47a
authored
Nov 14, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
8bps: return meaningful error codes.
parent
f7d15d2f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
8bps.c
libavcodec/8bps.c
+6
-5
No files found.
libavcodec/8bps.c
View file @
313da47a
...
...
@@ -69,15 +69,16 @@ static int decode_frame(AVCodecContext *avctx, void *data,
unsigned
int
px_inc
;
unsigned
int
planes
=
c
->
planes
;
unsigned
char
*
planemap
=
c
->
planemap
;
int
ret
;
if
(
c
->
pic
.
data
[
0
])
avctx
->
release_buffer
(
avctx
,
&
c
->
pic
);
c
->
pic
.
reference
=
0
;
c
->
pic
.
buffer_hints
=
FF_BUFFER_HINTS_VALID
;
if
(
ff_get_buffer
(
avctx
,
&
c
->
pic
)
<
0
)
{
if
(
(
ret
=
ff_get_buffer
(
avctx
,
&
c
->
pic
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
-
1
;
return
ret
;
}
/* Set data pointer after line lengths */
...
...
@@ -101,14 +102,14 @@ static int decode_frame(AVCodecContext *avctx, void *data,
/* Decode a row of this plane */
while
(
dlen
>
0
)
{
if
(
dp
+
1
>=
buf
+
buf_size
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
if
((
count
=
*
dp
++
)
<=
127
)
{
count
++
;
dlen
-=
count
+
1
;
if
(
pixptr
+
count
*
px_inc
>
pixptr_end
)
break
;
if
(
dp
+
count
>
buf
+
buf_size
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
while
(
count
--
)
{
*
pixptr
=
*
dp
++
;
pixptr
+=
px_inc
;
...
...
@@ -185,7 +186,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
default:
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error: Unsupported color depth: %u.
\n
"
,
avctx
->
bits_per_coded_sample
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
return
0
;
...
...
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