comparison h264.c @ 11169:e251be458ac3 libavcodec

Drop if(0) code.
author michael
date Sun, 14 Feb 2010 22:59:19 +0000
parents d9725977b699
children d092ec99cb59
comparison
equal deleted inserted replaced
11168:a820571a6712 11169:e251be458ac3
1279 } 1279 }
1280 } 1280 }
1281 } 1281 }
1282 if(h->cbp || IS_INTRA(mb_type)) 1282 if(h->cbp || IS_INTRA(mb_type))
1283 s->dsp.clear_blocks(h->mb); 1283 s->dsp.clear_blocks(h->mb);
1284
1285 if(h->deblocking_filter && 0) {
1286 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, simple);
1287 fill_filter_caches(h, mb_type); //FIXME don't fill stuff which isn't used by filter_mb
1288 h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
1289 h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
1290 if (!simple && FRAME_MBAFF) {
1291 ff_h264_filter_mb (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
1292 } else {
1293 ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
1294 }
1295 }
1296 } 1284 }
1297 1285
1298 /** 1286 /**
1299 * Process a macroblock; this case avoids checks for expensive uncommon cases. 1287 * Process a macroblock; this case avoids checks for expensive uncommon cases.
1300 */ 1288 */