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
ade40280
Commit
ade40280
authored
Nov 21, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eatgv: return meaningful error codes.
parent
0859eaa0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
eatgv.c
libavcodec/eatgv.c
+10
-10
No files found.
libavcodec/eatgv.c
View file @
ade40280
...
...
@@ -73,7 +73,7 @@ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst
src
+=
2
;
if
(
src
+
3
>
src_end
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
size
=
AV_RB24
(
src
);
src
+=
3
;
...
...
@@ -146,7 +146,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
const
unsigned
char
*
blocks_raw
;
if
(
buf
+
12
>
buf_end
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
num_mvs
=
AV_RL16
(
&
buf
[
0
]);
num_blocks_raw
=
AV_RL16
(
&
buf
[
2
]);
...
...
@@ -175,7 +175,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
mvbits
=
(
num_mvs
*
2
*
10
+
31
)
&
~
31
;
if
(
buf
+
(
mvbits
>>
3
)
+
16
*
num_blocks_raw
+
8
*
num_blocks_packed
>
buf_end
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
init_get_bits
(
&
gb
,
buf
,
mvbits
);
for
(
i
=
0
;
i
<
num_mvs
;
i
++
)
{
...
...
@@ -200,7 +200,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
if
(
get_bits_left
(
&
gb
)
<
vector_bits
*
(
s
->
avctx
->
height
/
4
)
*
(
s
->
avctx
->
width
/
4
))
return
-
1
;
return
AVERROR_INVALIDDATA
;
/* read vectors and build frame */
for
(
y
=
0
;
y
<
s
->
avctx
->
height
/
4
;
y
++
)
...
...
@@ -256,7 +256,7 @@ static int tgv_decode_frame(AVCodecContext *avctx,
int
buf_size
=
avpkt
->
size
;
TgvContext
*
s
=
avctx
->
priv_data
;
const
uint8_t
*
buf_end
=
buf
+
buf_size
;
int
chunk_type
;
int
chunk_type
,
ret
;
chunk_type
=
AV_RL32
(
&
buf
[
0
]);
buf
+=
EA_PREAMBLE_SIZE
;
...
...
@@ -265,7 +265,7 @@ static int tgv_decode_frame(AVCodecContext *avctx,
int
pal_count
,
i
;
if
(
buf
+
12
>
buf_end
)
{
av_log
(
avctx
,
AV_LOG_WARNING
,
"truncated header
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
s
->
width
=
AV_RL16
(
&
buf
[
0
]);
...
...
@@ -284,8 +284,8 @@ static int tgv_decode_frame(AVCodecContext *avctx,
}
}
if
(
av_image_check_size
(
s
->
width
,
s
->
height
,
0
,
avctx
)
)
return
-
1
;
if
(
(
ret
=
av_image_check_size
(
s
->
width
,
s
->
height
,
0
,
avctx
))
<
0
)
return
ret
;
/* shuffle */
FFSWAP
(
AVFrame
,
s
->
frame
,
s
->
last_frame
);
...
...
@@ -310,7 +310,7 @@ static int tgv_decode_frame(AVCodecContext *avctx,
s
->
frame
.
pict_type
=
AV_PICTURE_TYPE_I
;
if
(
unpack
(
buf
,
buf_end
,
s
->
frame
.
data
[
0
],
s
->
avctx
->
width
,
s
->
avctx
->
height
)
<
0
)
{
av_log
(
avctx
,
AV_LOG_WARNING
,
"truncated intra frame
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
}
else
{
if
(
!
s
->
last_frame
.
data
[
0
])
{
...
...
@@ -321,7 +321,7 @@ static int tgv_decode_frame(AVCodecContext *avctx,
s
->
frame
.
pict_type
=
AV_PICTURE_TYPE_P
;
if
(
tgv_decode_inter
(
s
,
buf
,
buf_end
)
<
0
)
{
av_log
(
avctx
,
AV_LOG_WARNING
,
"truncated inter frame
\n
"
);
return
-
1
;
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