Commit 9e1cd079 authored by michael's avatar michael

Drop if(0) code.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21825 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dc980775
......@@ -1281,18 +1281,6 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
}
if(h->cbp || IS_INTRA(mb_type))
s->dsp.clear_blocks(h->mb);
if(h->deblocking_filter && 0) {
backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, simple);
fill_filter_caches(h, mb_type); //FIXME don't fill stuff which isn't used by filter_mb
h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
if (!simple && FRAME_MBAFF) {
ff_h264_filter_mb (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
} else {
ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
}
}
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment