diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-23 02:02:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-23 12:05:32 +0200 |
commit | 62582a696b4dbe3d644ea19aa6739bbe592482da (patch) | |
tree | 2001d2deb4536f0888acbc103489e2de3106e9ea | |
parent | 230c1a90754860719b017a9ea4627dc81f67ff6e (diff) | |
download | ffmpeg-62582a696b4dbe3d644ea19aa6739bbe592482da.tar.gz |
cook: Fix small typo in av_log_ask_for_sample message.
-rw-r--r-- | libavcodec/cook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index 282ca1029d..f1df2405f6 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -1136,7 +1136,7 @@ static av_cold int cook_decode_init(AVCodecContext *avctx) switch (q->subpacket[s].cookversion) { case MONO: if (q->nb_channels != 1) { - av_log_ask_for_sample(avctx, "Container channels != 1.!\n"); + av_log_ask_for_sample(avctx, "Container channels != 1.\n"); return -1; } av_log(avctx,AV_LOG_DEBUG,"MONO\n"); |