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
6bf70127
Commit
6bf70127
authored
Nov 17, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tmv: return meaningful error codes.
parent
9e676490
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
tmv.c
libavcodec/tmv.c
+4
-3
No files found.
libavcodec/tmv.c
View file @
6bf70127
...
@@ -47,20 +47,21 @@ static int tmv_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -47,20 +47,21 @@ static int tmv_decode_frame(AVCodecContext *avctx, void *data,
unsigned
char_cols
=
avctx
->
width
>>
3
;
unsigned
char_cols
=
avctx
->
width
>>
3
;
unsigned
char_rows
=
avctx
->
height
>>
3
;
unsigned
char_rows
=
avctx
->
height
>>
3
;
unsigned
x
,
y
,
fg
,
bg
,
c
;
unsigned
x
,
y
,
fg
,
bg
,
c
;
int
ret
;
if
(
tmv
->
pic
.
data
[
0
])
if
(
tmv
->
pic
.
data
[
0
])
avctx
->
release_buffer
(
avctx
,
&
tmv
->
pic
);
avctx
->
release_buffer
(
avctx
,
&
tmv
->
pic
);
if
(
ff_get_buffer
(
avctx
,
&
tmv
->
pic
)
<
0
)
{
if
(
(
ret
=
ff_get_buffer
(
avctx
,
&
tmv
->
pic
)
)
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
-
1
;
return
ret
;
}
}
if
(
avpkt
->
size
<
2
*
char_rows
*
char_cols
)
{
if
(
avpkt
->
size
<
2
*
char_rows
*
char_cols
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"Input buffer too small, truncated sample?
\n
"
);
"Input buffer too small, truncated sample?
\n
"
);
*
got_frame
=
0
;
*
got_frame
=
0
;
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
}
tmv
->
pic
.
pict_type
=
AV_PICTURE_TYPE_I
;
tmv
->
pic
.
pict_type
=
AV_PICTURE_TYPE_I
;
...
...
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