diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 01:02:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-03 18:26:12 +0200 |
commit | a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch) | |
tree | f04a20b097c813143cf259c8001cc707fc6024d9 /libavdevice/v4l2.c | |
parent | 4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff) | |
download | ffmpeg-a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7.tar.gz |
silly typo fixes
Diffstat (limited to 'libavdevice/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 2 |
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"); |