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
900a129f
Commit
900a129f
authored
Apr 12, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libopencore-amr, libvo-amrwbenc: Return proper error codes in most places
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
a8ec07c9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
libopencore-amr.c
libavcodec/libopencore-amr.c
+8
-8
libvo-amrwbenc.c
libavcodec/libvo-amrwbenc.c
+4
-4
No files found.
libavcodec/libopencore-amr.c
View file @
900a129f
...
...
@@ -92,7 +92,7 @@ static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
if
(
avctx
->
channels
>
1
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"amr_nb: multichannel decoding not supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
return
0
;
...
...
@@ -126,7 +126,7 @@ static int amr_nb_decode_frame(AVCodecContext *avctx, void *data,
if
(
packet_size
>
buf_size
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"amr frame too short (%u, should be %u)
\n
"
,
buf_size
,
packet_size
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
s
->
frameCount
++
;
...
...
@@ -159,12 +159,12 @@ static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
if
(
avctx
->
sample_rate
!=
8000
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Only 8000Hz sample rate supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
if
(
avctx
->
channels
!=
1
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Only mono supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
avctx
->
frame_size
=
160
;
...
...
@@ -178,7 +178,7 @@ static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
if
((
s
->
enc_bitrate
=
getBitrateMode
(
avctx
->
bit_rate
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
nb_bitrate_unsupported
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
return
0
;
...
...
@@ -202,7 +202,7 @@ static int amr_nb_encode_frame(AVCodecContext *avctx,
if
((
s
->
enc_bitrate
=
getBitrateMode
(
avctx
->
bit_rate
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
nb_bitrate_unsupported
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
written
=
Encoder_Interface_Encode
(
s
->
enstate
,
s
->
enc_bitrate
,
data
,
...
...
@@ -250,7 +250,7 @@ static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
if
(
avctx
->
channels
>
1
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"amr_wb: multichannel decoding not supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
return
0
;
...
...
@@ -277,7 +277,7 @@ static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
if
(
packet_size
>
buf_size
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"amr frame too short (%u, should be %u)
\n
"
,
buf_size
,
packet_size
+
1
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
s
->
frameCount
++
;
...
...
libavcodec/libvo-amrwbenc.c
View file @
900a129f
...
...
@@ -65,17 +65,17 @@ static av_cold int amr_wb_encode_init(AVCodecContext *avctx)
if
(
avctx
->
sample_rate
!=
16000
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Only 16000Hz sample rate supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
if
(
avctx
->
channels
!=
1
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Only mono supported
\n
"
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
if
((
s
->
mode
=
getWBBitrateMode
(
avctx
->
bit_rate
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
wb_bitrate_unsupported
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
avctx
->
frame_size
=
320
;
...
...
@@ -105,7 +105,7 @@ static int amr_wb_encode_frame(AVCodecContext *avctx,
if
((
s
->
mode
=
getWBBitrateMode
(
avctx
->
bit_rate
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
wb_bitrate_unsupported
);
return
-
1
;
return
AVERROR
(
ENOSYS
)
;
}
size
=
E_IF_encode
(
s
->
state
,
s
->
mode
,
data
,
frame
,
s
->
allow_dtx
);
return
size
;
...
...
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