summaryrefslogtreecommitdiff
path: root/libavdevice
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-21 01:02:13 +0200
committerDiego Biurrun <diego@biurrun.de>2013-05-03 18:26:12 +0200
commita5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch)
treef04a20b097c813143cf259c8001cc707fc6024d9 /libavdevice
parent4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff)
silly typo fixes
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c
index 9e5aa5e660..d163cbe81c 100644
--- a/libavdevice/v4l2.c
+++ b/libavdevice/v4l2.c
@@ -485,7 +485,7 @@ static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)
/* Image is at s->buff_start[buf.index] */
if (avpriv_atomic_int_get(&s->buffers_queued) == FFMAX(s->buffers / 8, 1)) {
- /* when we start getting low on queued buffers, fallback to copying data */
+ /* when we start getting low on queued buffers, fall back on copying data */
res = av_new_packet(pkt, buf.bytesused);
if (res < 0) {
av_log(ctx, AV_LOG_ERROR, "Error allocating a packet.\n");