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:
authorVitor Sessak <vitor1001@gmail.com>2007-12-02 01:21:04 +0300
committerVitor Sessak <vitor1001@gmail.com>2007-12-02 01:21:04 +0300
commit52b541ad798c2388e92a1a876550ff381f9b2346 (patch)
treeed4fa9fbaf0558825c666dbc40eb78fbb981a546 /libavdevice
parent329851e03251b58b43c0b55c2852a69dcbb79459 (diff)
spelling
Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/audio.c2
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 */