Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
560ff809
Commit
560ff809
authored
21 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
av_log()
Originally committed as revision 2808 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
310ffb8f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/amr.c
+10
-10
10 additions, 10 deletions
libavcodec/amr.c
with
10 additions
and
10 deletions
libavcodec/amr.c
+
10
−
10
View file @
560ff809
...
...
@@ -141,7 +141,7 @@ static int amr_nb_decode_init(AVCodecContext * avctx)
if
(
Speech_Decode_Frame_init
(
&
s
->
speech_decoder_state
,
"Decoder"
))
{
printf
(
"Speech_Decode_Frame_init error
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Speech_Decode_Frame_init error
\n
"
);
return
-
1
;
}
return
0
;
...
...
@@ -161,7 +161,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only 8000Hz sample rate supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only 8000Hz sample rate supported
\n
"
);
}
return
-
1
;
}
...
...
@@ -170,7 +170,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only mono supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only mono supported
\n
"
);
}
return
-
1
;
}
...
...
@@ -182,7 +182,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Speech_Encode_Frame_init error
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Speech_Encode_Frame_init error
\n
"
);
}
return
-
1
;
}
...
...
@@ -344,7 +344,7 @@ static int amr_nb_decode_init(AVCodecContext * avctx)
s
->
decState
=
Decoder_Interface_init
();
if
(
!
s
->
decState
)
{
printf
(
"Decoder_Interface_init error
\r\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Decoder_Interface_init error
\r\n
"
);
return
-
1
;
}
return
0
;
...
...
@@ -359,7 +359,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only 8000Hz sample rate supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only 8000Hz sample rate supported
\n
"
);
}
return
-
1
;
}
...
...
@@ -368,7 +368,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only mono supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only mono supported
\n
"
);
}
return
-
1
;
}
...
...
@@ -381,7 +381,7 @@ static int amr_nb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Encoder_Interface_init error
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Encoder_Interface_init error
\n
"
);
}
return
-
1
;
}
...
...
@@ -543,7 +543,7 @@ static int amr_wb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only 16000Hz sample rate supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only 16000Hz sample rate supported
\n
"
);
}
return
-
1
;
}
...
...
@@ -552,7 +552,7 @@ static int amr_wb_encode_init(AVCodecContext * avctx)
{
if
(
avctx
->
debug
)
{
fprintf
(
stderr
,
"Only mono supported
\n
"
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Only mono supported
\n
"
);
}
return
-
1
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment