summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-04-07 14:09:20 +0000
committerDiego Biurrun <diego@biurrun.de>2007-04-07 14:09:20 +0000
commite42dba481f6e552539ed8ce1a164024f68667943 (patch)
tree1bd9fca6580e24eb697a145eab31d487a7645ba9 /libavcodec/h264.c
parent911406f2c476c8e8fcd0fdf997f071f925cd4a32 (diff)
typos/grammar
Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 085e18a896..e4e32346cf 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -8133,7 +8133,7 @@ static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){
} else {
// start code prefix search
for(; buf_index + 3 < buf_size; buf_index++){
- // this should allways succeed in the first iteration
+ // This should always succeed in the first iteration.
if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1)
break;
}