mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Enable filter_mb_fast for CAVLC P slices.
Originally committed as revision 21291 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
439d6b1dcf
commit
bce6a1e7c7
@ -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 ||
|
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 ||
|
!(h->slice_type_nos == FF_I_TYPE ||
|
||||||
(CABAC && h->slice_type_nos == FF_P_TYPE) ||
|
h->slice_type_nos == FF_P_TYPE ||
|
||||||
(s->flags2 & CODEC_FLAG2_FAST)) ||
|
(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->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]))) {
|
h->slice_table[mb_xy] != h->slice_table[mb_xy - 1]))) {
|
||||||
|
Loading…
Reference in New Issue
Block a user