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:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-18 01:18:54 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-18 01:18:54 +0300
commitdb7d0d6e7c43da123106f881557b82d3deec44b5 (patch)
tree662c718d4819e7b5f4e392fae35e68bce30484d4 /libavcodec
parent37a4d3383fb9deb8b94053195727ed0fe6406409 (diff)
lavc/fic: Cosmetics, fix a typo.
Found by Moritz Barsnick
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/fic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fic.c b/libavcodec/fic.c
index 7d698f08d9..a2f878f201 100644
--- a/libavcodec/fic.c
+++ b/libavcodec/fic.c
@@ -323,7 +323,7 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
cur_y = AV_RL16(src + 35);
if (!skip_cursor && (cur_x > avctx->width || cur_y > avctx->height)) {
av_log(avctx, AV_LOG_WARNING,
- "Invalid cursor position: (%d,%d). Skipping cusor.\n",
+ "Invalid cursor position: (%d,%d). Skipping cursor.\n",
cur_x, cur_y);
skip_cursor = 1;
}