summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-02-14 22:59:19 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-02-14 22:59:19 +0000
commit94cb59944376349d741459f85229a28aa0e91bea (patch)
tree391fca5bdceb56ce905bb8bc3ed511c5697e7170
parent4130f7393bf439cdb67cb8b3b011c00a26b36e84 (diff)
Drop if(0) code.
Originally committed as revision 21825 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h264.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 10ef9d6b94..5189363604 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -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);
- }
- }
}
/**