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
c2502b7b
Commit
c2502b7b
authored
Aug 01, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alac: remove redundant "alac: " from log messages
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
b9df3f4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
alac.c
libavcodec/alac.c
+2
-2
No files found.
libavcodec/alac.c
View file @
c2502b7b
...
...
@@ -601,12 +601,12 @@ static av_cold int alac_decode_init(AVCodecContext * avctx)
/* initialize from the extradata */
if
(
alac
->
avctx
->
extradata_size
!=
ALAC_EXTRADATA_SIZE
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"
alac:
expected %d extradata bytes
\n
"
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"expected %d extradata bytes
\n
"
,
ALAC_EXTRADATA_SIZE
);
return
-
1
;
}
if
(
alac_set_info
(
alac
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"
alac:
set_info failed
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"set_info failed
\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