Mercurial > libavcodec.hg
changeset 8330:7c00e980c153 libavcodec
Enable filter_mb_fast if CODEC_FLAG2_FAST is set.
author | michael |
---|---|
date | Mon, 15 Dec 2008 01:24:04 +0000 |
parents | 8b6bcfa22aa8 |
children | 0579157cbb14 |
files | h264.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/h264.c Mon Dec 15 00:00:16 2008 +0000 +++ b/h264.c Mon Dec 15 01:24:04 2008 +0000 @@ -6119,7 +6119,7 @@ mb_xy = h->mb_xy; if(mb_x==0 || mb_y==mb_y_firstrow || !s->dsp.h264_loop_filter_strength || h->pps.chroma_qp_diff || -1 || + !(s->flags2 & CODEC_FLAG2_FAST) || //FIXME filter_mb_fast is broken, thus hasto be, but should not under CODEC_FLAG2_FAST (h->deblocking_filter == 2 && (h->slice_table[mb_xy] != h->slice_table[h->top_mb_xy] || h->slice_table[mb_xy] != h->slice_table[mb_xy - 1]))) { filter_mb(h, mb_x, mb_y, img_y, img_cb, img_cr, linesize, uvlinesize);