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
1cef211d
Commit
1cef211d
authored
Sep 05, 2005
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AV_LOG_DEBUG vs. AV_LOG_ERROR
Originally committed as revision 4559 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
302c389e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
flac.c
libavcodec/flac.c
+5
-5
No files found.
libavcodec/flac.c
View file @
1cef211d
...
...
@@ -406,7 +406,7 @@ static inline int decode_subframe(FLACContext *s, int channel)
if
(
get_bits1
(
&
s
->
gb
))
{
av_log
(
s
->
avctx
,
AV_LOG_
DEBUG
,
"invalid subframe padding
\n
"
);
av_log
(
s
->
avctx
,
AV_LOG_
ERROR
,
"invalid subframe padding
\n
"
);
return
-
1
;
}
type
=
get_bits
(
&
s
->
gb
,
6
);
...
...
@@ -462,7 +462,7 @@ static inline int decode_subframe(FLACContext *s, int channel)
}
else
{
av_log
(
s
->
avctx
,
AV_LOG_
DEBUG
,
"invalid coding type
\n
"
);
av_log
(
s
->
avctx
,
AV_LOG_
ERROR
,
"invalid coding type
\n
"
);
return
-
1
;
}
...
...
@@ -492,7 +492,7 @@ static int decode_frame(FLACContext *s)
decorrelation
=
LEFT_SIDE
+
assignment
-
8
;
else
{
av_log
(
s
->
avctx
,
AV_LOG_
DEBUG
,
"unsupported channel assignment %d (channels=%d)
\n
"
,
assignment
,
s
->
channels
);
av_log
(
s
->
avctx
,
AV_LOG_
ERROR
,
"unsupported channel assignment %d (channels=%d)
\n
"
,
assignment
,
s
->
channels
);
return
-
1
;
}
...
...
@@ -503,13 +503,13 @@ static int decode_frame(FLACContext *s)
bps
=
sample_size_table
[
sample_size_code
];
else
{
av_log
(
s
->
avctx
,
AV_LOG_
DEBUG
,
"invalid sample size code (%d)
\n
"
,
sample_size_code
);
av_log
(
s
->
avctx
,
AV_LOG_
ERROR
,
"invalid sample size code (%d)
\n
"
,
sample_size_code
);
return
-
1
;
}
if
(
get_bits1
(
&
s
->
gb
))
{
av_log
(
s
->
avctx
,
AV_LOG_
DEBUG
,
"broken stream, invalid padding
\n
"
);
av_log
(
s
->
avctx
,
AV_LOG_
ERROR
,
"broken stream, invalid padding
\n
"
);
return
-
1
;
}
...
...
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