[FFmpeg-cvslog] r14689 - trunk/libavcodec/h264.c
michael
subversion
Mon Aug 11 05:08:03 CEST 2008
Author: michael
Date: Mon Aug 11 05:08:02 2008
New Revision: 14689
Log:
The deblock filter does not need all the intra availabilit stuff so do
not recalculate it.
Modified:
trunk/libavcodec/h264.c
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c (original)
+++ trunk/libavcodec/h264.c Mon Aug 11 05:08:02 2008
@@ -204,7 +204,6 @@ static void fill_caches(H264Context *h,
topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0;
left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0;
left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0;
- }
if(IS_INTRA(mb_type)){
int type_mask= h->pps.constrained_intra_pred ? IS_INTRA(-1) : -1;
@@ -285,6 +284,7 @@ static void fill_caches(H264Context *h,
}
}
}
+ }
/*
More information about the ffmpeg-cvslog
mailing list