summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-07-17 13:10:27 -0300
committerJames Almer <jamrial@gmail.com>2016-07-17 13:10:27 -0300
commitd688f39dc4bccbc2af7fa5296330646f8a7a5fa4 (patch)
treeeb77f7bd70c4b7016f56bec08a4dd9bf8264c6c6 /ffmpeg.c
parentf1eb6ddcb34f4d27d52d4a0a30269728612c41b0 (diff)
cosmetics: fix some misspelled words
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 9ffd833a91..b29be1ebd5 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3499,12 +3499,12 @@ static int check_keyboard_interaction(int64_t cur_time)
key == 'c' ? AVFILTER_CMD_FLAG_ONE : 0);
fprintf(stderr, "Command reply for stream %d: ret:%d res:\n%s", i, ret, buf);
} else if (key == 'c') {
- fprintf(stderr, "Queing commands only on filters supporting the specific command is unsupported\n");
+ fprintf(stderr, "Queuing commands only on filters supporting the specific command is unsupported\n");
ret = AVERROR_PATCHWELCOME;
} else {
ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
if (ret < 0)
- fprintf(stderr, "Queing command failed with error %s\n", av_err2str(ret));
+ fprintf(stderr, "Queuing command failed with error %s\n", av_err2str(ret));
}
}
}