From 42ebca85514bd38347d145cf049c92db69d8644f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Mon, 18 Jan 2010 16:29:16 +0000 Subject: [PATCH] PAFF CABAC P slices seem to work as well, so enable them for ff_h264_filter_mb_fast() too. Originally committed as revision 21289 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264_loopfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264_loopfilter.c b/libavcodec/h264_loopfilter.c index 56b1c17c95c..27cc97d0e27 100644 --- a/libavcodec/h264_loopfilter.c +++ b/libavcodec/h264_loopfilter.c @@ -335,7 +335,7 @@ void ff_h264_filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, if(mb_x==0 || mb_y==mb_y_firstrow || !s->dsp.h264_loop_filter_strength || h->pps.chroma_qp_diff || !(h->slice_type_nos == FF_I_TYPE || - (CABAC && h->slice_type_nos == FF_P_TYPE && !FIELD_PICTURE) || + (CABAC && h->slice_type_nos == FF_P_TYPE) || (s->flags2 & CODEC_FLAG2_FAST)) || (h->deblocking_filter == 2 && (h->slice_table[mb_xy] != h->slice_table[h->top_mb_xy] || //use slice_num h->slice_table[mb_xy] != h->slice_table[mb_xy - 1]))) { -- GitLab