comparison h264_direct.c @ 11100:7c89ba8c0fd7 libavcodec

Remove incorrect fixme, i see no case that is missing.
author michael
date Mon, 08 Feb 2010 02:10:59 +0000
parents 8023ba45995f
children a82b9c88682f
comparison
equal deleted inserted replaced
11099:8023ba45995f 11100:7c89ba8c0fd7
217 217
218 if(h->direct_spatial_mv_pred){ 218 if(h->direct_spatial_mv_pred){
219 int ref[2]; 219 int ref[2];
220 int mv[2][2]; 220 int mv[2][2];
221 int list; 221 int list;
222
223 /* FIXME interlacing + spatial direct uses wrong colocated block positions */
224 222
225 /* ref = min(neighbors) */ 223 /* ref = min(neighbors) */
226 for(list=0; list<2; list++){ 224 for(list=0; list<2; list++){
227 int left_ref = h->ref_cache[list][scan8[0] - 1]; 225 int left_ref = h->ref_cache[list][scan8[0] - 1];
228 int top_ref = h->ref_cache[list][scan8[0] - 8]; 226 int top_ref = h->ref_cache[list][scan8[0] - 8];