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
1ade37ae
Commit
1ade37ae
authored
Oct 17, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/tta: use meaningful error codes
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
d6ea59b8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tta.c
libavcodec/tta.c
+4
-4
No files found.
libavcodec/tta.c
View file @
1ade37ae
...
@@ -180,7 +180,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
...
@@ -180,7 +180,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
// 30bytes includes a seektable with one frame
// 30bytes includes a seektable with one frame
if
(
avctx
->
extradata_size
<
30
)
if
(
avctx
->
extradata_size
<
30
)
return
-
1
;
return
AVERROR_INVALIDDATA
;
init_get_bits
(
&
s
->
gb
,
avctx
->
extradata
,
avctx
->
extradata_size
*
8
);
init_get_bits
(
&
s
->
gb
,
avctx
->
extradata
,
avctx
->
extradata_size
*
8
);
if
(
show_bits_long
(
&
s
->
gb
,
32
)
==
AV_RL32
(
"TTA1"
))
if
(
show_bits_long
(
&
s
->
gb
,
32
)
==
AV_RL32
(
"TTA1"
))
...
@@ -196,7 +196,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
...
@@ -196,7 +196,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
s
->
format
=
get_bits
(
&
s
->
gb
,
16
);
s
->
format
=
get_bits
(
&
s
->
gb
,
16
);
if
(
s
->
format
>
2
)
{
if
(
s
->
format
>
2
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Invalid format
\n
"
);
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Invalid format
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
}
if
(
s
->
format
==
FORMAT_ENCRYPTED
)
{
if
(
s
->
format
==
FORMAT_ENCRYPTED
)
{
av_log_missing_feature
(
s
->
avctx
,
"Encrypted TTA"
,
0
);
av_log_missing_feature
(
s
->
avctx
,
"Encrypted TTA"
,
0
);
...
@@ -268,7 +268,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
...
@@ -268,7 +268,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
if
(
s
->
frame_length
>=
UINT_MAX
/
(
s
->
channels
*
sizeof
(
int32_t
))){
if
(
s
->
frame_length
>=
UINT_MAX
/
(
s
->
channels
*
sizeof
(
int32_t
))){
av_log
(
avctx
,
AV_LOG_ERROR
,
"frame_length too large
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"frame_length too large
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
}
if
(
s
->
bps
<
3
)
{
if
(
s
->
bps
<
3
)
{
...
@@ -284,7 +284,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
...
@@ -284,7 +284,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
}
}
}
else
{
}
else
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Wrong extradata present
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Wrong extradata present
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
}
avcodec_get_frame_defaults
(
&
s
->
frame
);
avcodec_get_frame_defaults
(
&
s
->
frame
);
...
...
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