diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-16 17:22:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-16 17:22:09 +0000 |
commit | 5d81d6417567d4194c8ec218aaf88f665e3ac195 (patch) | |
tree | 5df0bc27770a901481d40c4fe2a381affb31d8a7 /libavcodec/h264.c | |
parent | c49e23e2a4e238fd527295513985dfc40cb9b487 (diff) | |
download | ffmpeg-5d81d6417567d4194c8ec218aaf88f665e3ac195.tar.gz |
cosmetics: comment typo fixes
Originally committed as revision 11232 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 2231c1e33a..263a66d68e 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4153,7 +4153,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ if(h->deblocking_filter == 1 && h0->max_contexts > 1) { if(s->avctx->flags2 & CODEC_FLAG2_FAST) { /* Cheat slightly for speed: - Dont bother to deblock across slices */ + Do not bother to deblock across slices. */ h->deblocking_filter = 2; } else { h0->max_contexts = 1; |