comparison h264.c @ 6029:fc51a6ffa64f libavcodec

cosmetics: comment typo fixes
author diego
date Sun, 16 Dec 2007 17:22:09 +0000
parents c531defb03ee
children a5f184563b8c
comparison
equal deleted inserted replaced
6028:1ba8ee13e5b9 6029:fc51a6ffa64f
4151 h->deblocking_filter= 0; 4151 h->deblocking_filter= 0;
4152 4152
4153 if(h->deblocking_filter == 1 && h0->max_contexts > 1) { 4153 if(h->deblocking_filter == 1 && h0->max_contexts > 1) {
4154 if(s->avctx->flags2 & CODEC_FLAG2_FAST) { 4154 if(s->avctx->flags2 & CODEC_FLAG2_FAST) {
4155 /* Cheat slightly for speed: 4155 /* Cheat slightly for speed:
4156 Dont bother to deblock across slices */ 4156 Do not bother to deblock across slices. */
4157 h->deblocking_filter = 2; 4157 h->deblocking_filter = 2;
4158 } else { 4158 } else {
4159 h0->max_contexts = 1; 4159 h0->max_contexts = 1;
4160 if(!h0->single_decode_warning) { 4160 if(!h0->single_decode_warning) {
4161 av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n"); 4161 av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");