comparison h264.h @ 11162:d9725977b699 libavcodec

h264: Remove unused variables.
author astrange
date Sat, 13 Feb 2010 21:09:38 +0000
parents 286497e7f7c5
children 8070f6a8df50
comparison
equal deleted inserted replaced
11161:286497e7f7c5 11162:d9725977b699
1134 static int fill_filter_caches(H264Context *h, int mb_type){ 1134 static int fill_filter_caches(H264Context *h, int mb_type){
1135 MpegEncContext * const s = &h->s; 1135 MpegEncContext * const s = &h->s;
1136 const int mb_xy= h->mb_xy; 1136 const int mb_xy= h->mb_xy;
1137 int top_xy, left_xy[2]; 1137 int top_xy, left_xy[2];
1138 int top_type, left_type[2]; 1138 int top_type, left_type[2];
1139 int i;
1140 1139
1141 top_xy = mb_xy - (s->mb_stride << MB_FIELD); 1140 top_xy = mb_xy - (s->mb_stride << MB_FIELD);
1142 1141
1143 //FIXME deblocking could skip the intra and nnz parts. 1142 //FIXME deblocking could skip the intra and nnz parts.
1144 1143