summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-08-01 18:26:10 +0000
committerPaul B Mahol <onemda@gmail.com>2012-08-01 20:17:25 +0000
commitc2502b7b3430f9a931f6731a0ca7343dd98ec306 (patch)
tree7ae69fe24673648c6015421111fc68261dcd4c0b /libavcodec/alac.c
parentb9df3f4f6ce06257f439174c37936599008d426a (diff)
alac: remove redundant "alac: " from log messages
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index 2d98456f8b..d41c9d95a4 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -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;
}