Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-08-03 15:43:57 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-08-03 16:50:26 +0400
commita2232e696be35cd0f9eb3ed8037a02767d1a939e (patch)
tree6538d170d5c0ecd0f3f2a4b79da775d7dd2d775c /libavcodec/cllc.c
parentbc426827492f6c741608af37e2eaab6c8072815d (diff)
cllc: fix typo in the error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/cllc.c')
-rw-r--r--libavcodec/cllc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cllc.c b/libavcodec/cllc.c
index 0c2c7c065b..d128d7ae94 100644
--- a/libavcodec/cllc.c
+++ b/libavcodec/cllc.c
@@ -225,7 +225,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
break;
default:
- av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d\n.", coding_type);
+ av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d.\n", coding_type);
return AVERROR_INVALIDDATA;
}