diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-12-01 22:21:04 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-12-01 22:21:04 +0000 |
commit | 52b541ad798c2388e92a1a876550ff381f9b2346 (patch) | |
tree | ed4fa9fbaf0558825c666dbc40eb78fbb981a546 /libavdevice | |
parent | 329851e03251b58b43c0b55c2852a69dcbb79459 (diff) | |
download | ffmpeg-52b541ad798c2388e92a1a876550ff381f9b2346.tar.gz |
spelling
Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/audio.c b/libavdevice/audio.c index 151cbffd51..87ffdef121 100644 --- a/libavdevice/audio.c +++ b/libavdevice/audio.c @@ -281,7 +281,7 @@ static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt) if (ioctl(s->fd, SNDCTL_DSP_GETISPACE, &abufi) == 0) { bdelay += abufi.bytes; } - /* substract time represented by the number of bytes in the audio fifo */ + /* subtract time represented by the number of bytes in the audio fifo */ cur_time -= (bdelay * 1000000LL) / (s->sample_rate * s->channels); /* convert to wanted units */ |