]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_direct.c
a70e041a69277da9df921c21cfebacdd74dfeba4
[ffmpeg] / libavcodec / h264_direct.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... direct mb/block decoding
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file libavcodec/h264_direct.c
24  * H.264 / AVC / MPEG4 part10 direct mb/block decoding.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #include "internal.h"
29 #include "dsputil.h"
30 #include "avcodec.h"
31 #include "mpegvideo.h"
32 #include "h264.h"
33 #include "rectangle.h"
34
35 //#undef NDEBUG
36 #include <assert.h>
37
38
39 static int get_scale_factor(H264Context * const h, int poc, int poc1, int i){
40     int poc0 = h->ref_list[0][i].poc;
41     int td = av_clip(poc1 - poc0, -128, 127);
42     if(td == 0 || h->ref_list[0][i].long_ref){
43         return 256;
44     }else{
45         int tb = av_clip(poc - poc0, -128, 127);
46         int tx = (16384 + (FFABS(td) >> 1)) / td;
47         return av_clip((tb*tx + 32) >> 6, -1024, 1023);
48     }
49 }
50
51 void ff_h264_direct_dist_scale_factor(H264Context * const h){
52     MpegEncContext * const s = &h->s;
53     const int poc = h->s.current_picture_ptr->field_poc[ s->picture_structure == PICT_BOTTOM_FIELD ];
54     const int poc1 = h->ref_list[1][0].poc;
55     int i, field;
56     for(field=0; field<2; field++){
57         const int poc  = h->s.current_picture_ptr->field_poc[field];
58         const int poc1 = h->ref_list[1][0].field_poc[field];
59         for(i=0; i < 2*h->ref_count[0]; i++)
60             h->dist_scale_factor_field[field][i^field] = get_scale_factor(h, poc, poc1, i+16);
61     }
62
63     for(i=0; i<h->ref_count[0]; i++){
64         h->dist_scale_factor[i] = get_scale_factor(h, poc, poc1, i);
65     }
66 }
67
68 static void fill_colmap(H264Context *h, int map[2][16+32], int list, int field, int colfield, int mbafi){
69     MpegEncContext * const s = &h->s;
70     Picture * const ref1 = &h->ref_list[1][0];
71     int j, old_ref, rfield;
72     int start= mbafi ? 16                      : 0;
73     int end  = mbafi ? 16+2*h->ref_count[0]    : h->ref_count[0];
74     int interl= mbafi || s->picture_structure != PICT_FRAME;
75
76     /* bogus; fills in for missing frames */
77     memset(map[list], 0, sizeof(map[list]));
78
79     for(rfield=0; rfield<2; rfield++){
80         for(old_ref=0; old_ref<ref1->ref_count[colfield][list]; old_ref++){
81             int poc = ref1->ref_poc[colfield][list][old_ref];
82
83             if     (!interl)
84                 poc |= 3;
85             else if( interl && (poc&3) == 3) //FIXME store all MBAFF references so this isnt needed
86                 poc= (poc&~3) + rfield + 1;
87
88             for(j=start; j<end; j++){
89                 if(4*h->ref_list[0][j].frame_num + (h->ref_list[0][j].reference&3) == poc){
90                     int cur_ref= mbafi ? (j-16)^field : j;
91                     map[list][2*old_ref + (rfield^field) + 16] = cur_ref;
92                     if(rfield == field || !interl)
93                         map[list][old_ref] = cur_ref;
94                     break;
95                 }
96             }
97         }
98     }
99 }
100
101 void ff_h264_direct_ref_list_init(H264Context * const h){
102     MpegEncContext * const s = &h->s;
103     Picture * const ref1 = &h->ref_list[1][0];
104     Picture * const cur = s->current_picture_ptr;
105     int list, j, field;
106     int sidx= (s->picture_structure&1)^1;
107     int ref1sidx= (ref1->reference&1)^1;
108
109     for(list=0; list<2; list++){
110         cur->ref_count[sidx][list] = h->ref_count[list];
111         for(j=0; j<h->ref_count[list]; j++)
112             cur->ref_poc[sidx][list][j] = 4*h->ref_list[list][j].frame_num + (h->ref_list[list][j].reference&3);
113     }
114
115     if(s->picture_structure == PICT_FRAME){
116         memcpy(cur->ref_count[1], cur->ref_count[0], sizeof(cur->ref_count[0]));
117         memcpy(cur->ref_poc  [1], cur->ref_poc  [0], sizeof(cur->ref_poc  [0]));
118     }
119
120     cur->mbaff= FRAME_MBAFF;
121
122     h->col_fieldoff= 0;
123     if(s->picture_structure == PICT_FRAME){
124         int cur_poc = s->current_picture_ptr->poc;
125         int *col_poc = h->ref_list[1]->field_poc;
126         h->col_parity= (FFABS(col_poc[0] - cur_poc) >= FFABS(col_poc[1] - cur_poc));
127         ref1sidx=sidx= h->col_parity;
128     }else if(!(s->picture_structure & h->ref_list[1][0].reference) && !h->ref_list[1][0].mbaff){ // FL -> FL & differ parity
129         h->col_fieldoff= s->mb_stride*(2*(h->ref_list[1][0].reference) - 3);
130     }
131
132     if(cur->pict_type != FF_B_TYPE || h->direct_spatial_mv_pred)
133         return;
134
135     for(list=0; list<2; list++){
136         fill_colmap(h, h->map_col_to_list0, list, sidx, ref1sidx, 0);
137         if(FRAME_MBAFF)
138         for(field=0; field<2; field++)
139             fill_colmap(h, h->map_col_to_list0_field[field], list, field, field, 1);
140     }
141 }
142
143 void ff_h264_pred_direct_motion(H264Context * const h, int *mb_type){
144     MpegEncContext * const s = &h->s;
145     int b8_stride = h->b8_stride;
146     int b4_stride = h->b_stride;
147     int mb_xy = h->mb_xy;
148     int mb_type_col[2];
149     const int16_t (*l1mv0)[2], (*l1mv1)[2];
150     const int8_t *l1ref0, *l1ref1;
151     const int is_b8x8 = IS_8X8(*mb_type);
152     unsigned int sub_mb_type;
153     int i8, i4;
154
155     assert(h->ref_list[1][0].reference&3);
156
157 #define MB_TYPE_16x16_OR_INTRA (MB_TYPE_16x16|MB_TYPE_INTRA4x4|MB_TYPE_INTRA16x16|MB_TYPE_INTRA_PCM)
158
159     if(IS_INTERLACED(h->ref_list[1][0].mb_type[mb_xy])){ // AFL/AFR/FR/FL -> AFL/FL
160         if(!IS_INTERLACED(*mb_type)){                    //     AFR/FR    -> AFL/FL
161             mb_xy= s->mb_x + ((s->mb_y&~1) + h->col_parity)*s->mb_stride;
162             b8_stride = 0;
163         }else{
164             mb_xy += h->col_fieldoff; // non zero for FL -> FL & differ parity
165         }
166         goto single_col;
167     }else{                                               // AFL/AFR/FR/FL -> AFR/FR
168         if(IS_INTERLACED(*mb_type)){                     // AFL       /FL -> AFR/FR
169             mb_xy= s->mb_x + (s->mb_y&~1)*s->mb_stride;
170             mb_type_col[0] = h->ref_list[1][0].mb_type[mb_xy];
171             mb_type_col[1] = h->ref_list[1][0].mb_type[mb_xy + s->mb_stride];
172             b8_stride *= 3;
173             b4_stride *= 6;
174
175             sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
176             if(    (mb_type_col[0] & MB_TYPE_16x16_OR_INTRA)
177                 && (mb_type_col[1] & MB_TYPE_16x16_OR_INTRA)
178                 && !is_b8x8){
179                 *mb_type   |= MB_TYPE_16x8 |MB_TYPE_L0L1|MB_TYPE_DIRECT2; /* B_16x8 */
180             }else{
181                 *mb_type   |= MB_TYPE_8x8|MB_TYPE_L0L1;
182             }
183         }else{                                           //     AFR/FR    -> AFR/FR
184 single_col:
185             mb_type_col[0] =
186             mb_type_col[1] = h->ref_list[1][0].mb_type[mb_xy];
187             if(IS_8X8(mb_type_col[0]) && !h->sps.direct_8x8_inference_flag){
188                 /* FIXME save sub mb types from previous frames (or derive from MVs)
189                 * so we know exactly what block size to use */
190                 sub_mb_type = MB_TYPE_8x8|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_4x4 */
191                 *mb_type   |= MB_TYPE_8x8|MB_TYPE_L0L1;
192             }else if(!is_b8x8 && (mb_type_col[0] & MB_TYPE_16x16_OR_INTRA)){
193                 sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
194                 *mb_type   |= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_16x16 */
195             }else if(!is_b8x8 && (mb_type_col[0] & (MB_TYPE_16x8|MB_TYPE_8x16))){
196                 sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
197                 *mb_type   |= MB_TYPE_L0L1|MB_TYPE_DIRECT2 | (mb_type_col[0] & (MB_TYPE_16x8|MB_TYPE_8x16));
198             }else{
199                 sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
200                 *mb_type   |= MB_TYPE_8x8|MB_TYPE_L0L1;
201             }
202         }
203     }
204
205     l1mv0  = &h->ref_list[1][0].motion_val[0][h->mb2b_xy [mb_xy]];
206     l1mv1  = &h->ref_list[1][0].motion_val[1][h->mb2b_xy [mb_xy]];
207     l1ref0 = &h->ref_list[1][0].ref_index [0][h->mb2b8_xy[mb_xy]];
208     l1ref1 = &h->ref_list[1][0].ref_index [1][h->mb2b8_xy[mb_xy]];
209     if(!b8_stride){
210         if(s->mb_y&1){
211             l1ref0 += h->b8_stride;
212             l1ref1 += h->b8_stride;
213             l1mv0  +=  2*b4_stride;
214             l1mv1  +=  2*b4_stride;
215         }
216     }
217
218     if(h->direct_spatial_mv_pred){
219         int ref[2];
220         int mv[2][2];
221         int list;
222
223         /* FIXME interlacing + spatial direct uses wrong colocated block positions */
224
225         /* ref = min(neighbors) */
226         for(list=0; list<2; list++){
227             int left_ref = h->ref_cache[list][scan8[0] - 1];
228             int top_ref  = h->ref_cache[list][scan8[0] - 8];
229             int refc = h->ref_cache[list][scan8[0] - 8 + 4];
230             const int16_t *C= h->mv_cache[list][ scan8[0] - 8 + 4];
231             if(refc == PART_NOT_AVAILABLE){
232                 refc = h->ref_cache[list][scan8[0] - 8 - 1];
233                 C    = h-> mv_cache[list][scan8[0] - 8 - 1];
234             }
235             ref[list] = FFMIN3((unsigned)left_ref, (unsigned)top_ref, (unsigned)refc);
236             if(ref[list] >= 0){
237                 //this is just pred_motion() but with the cases removed that cannot happen for direct blocks
238                 const int16_t * const A= h->mv_cache[list][ scan8[0] - 1 ];
239                 const int16_t * const B= h->mv_cache[list][ scan8[0] - 8 ];
240
241                 int match_count= (left_ref==ref[list]) + (top_ref==ref[list]) + (refc==ref[list]);
242                 if(match_count > 1){ //most common
243                     mv[list][0]= mid_pred(A[0], B[0], C[0]);
244                     mv[list][1]= mid_pred(A[1], B[1], C[1]);
245                 }else {
246                     assert(match_count==1);
247                     if(left_ref==ref[list]){
248                         mv[list][0]= A[0];
249                         mv[list][1]= A[1];
250                     }else if(top_ref==ref[list]){
251                         mv[list][0]= B[0];
252                         mv[list][1]= B[1];
253                     }else{
254                         mv[list][0]= C[0];
255                         mv[list][1]= C[1];
256                     }
257                 }
258             }else{
259                 int mask= ~(MB_TYPE_L0 << (2*list));
260                 mv[list][0] = mv[list][1] = 0;
261                 ref[list] = -1;
262                 if(!is_b8x8)
263                     *mb_type &= mask;
264                 sub_mb_type &= mask;
265             }
266         }
267         if(ref[0] < 0 && ref[1] < 0){
268             ref[0] = ref[1] = 0;
269             if(!is_b8x8)
270                 *mb_type |= MB_TYPE_L0L1;
271             sub_mb_type |= MB_TYPE_L0L1;
272         }
273
274         if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col[0])){
275             for(i8=0; i8<4; i8++){
276                 int x8 = i8&1;
277                 int y8 = i8>>1;
278                 int xy8 = x8+y8*b8_stride;
279                 int xy4 = 3*x8+y8*b4_stride;
280                 int a,b;
281
282                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
283                     continue;
284                 h->sub_mb_type[i8] = sub_mb_type;
285
286                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[0], 1);
287                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[1], 1);
288                 if(!IS_INTRA(mb_type_col[y8]) && !h->ref_list[1][0].long_ref
289                    && (   (l1ref0[xy8] == 0 && FFABS(l1mv0[xy4][0]) <= 1 && FFABS(l1mv0[xy4][1]) <= 1)
290                        || (l1ref0[xy8]  < 0 && l1ref1[xy8] == 0 && FFABS(l1mv1[xy4][0]) <= 1 && FFABS(l1mv1[xy4][1]) <= 1))){
291                     a=b=0;
292                     if(ref[0] > 0)
293                         a= pack16to32(mv[0][0],mv[0][1]);
294                     if(ref[1] > 0)
295                         b= pack16to32(mv[1][0],mv[1][1]);
296                 }else{
297                     a= pack16to32(mv[0][0],mv[0][1]);
298                     b= pack16to32(mv[1][0],mv[1][1]);
299                 }
300                 fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, a, 4);
301                 fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, b, 4);
302             }
303         }else if(IS_16X16(*mb_type)){
304             int a,b;
305
306             fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, (uint8_t)ref[0], 1);
307             fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, (uint8_t)ref[1], 1);
308             if(!IS_INTRA(mb_type_col[0]) && !h->ref_list[1][0].long_ref
309                && (   (l1ref0[0] == 0 && FFABS(l1mv0[0][0]) <= 1 && FFABS(l1mv0[0][1]) <= 1)
310                    || (l1ref0[0]  < 0 && l1ref1[0] == 0 && FFABS(l1mv1[0][0]) <= 1 && FFABS(l1mv1[0][1]) <= 1
311                        && h->x264_build>33U))){
312                 a=b=0;
313                 if(ref[0] > 0)
314                     a= pack16to32(mv[0][0],mv[0][1]);
315                 if(ref[1] > 0)
316                     b= pack16to32(mv[1][0],mv[1][1]);
317             }else{
318                 a= pack16to32(mv[0][0],mv[0][1]);
319                 b= pack16to32(mv[1][0],mv[1][1]);
320             }
321             fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, a, 4);
322             fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, b, 4);
323         }else{
324             for(i8=0; i8<4; i8++){
325                 const int x8 = i8&1;
326                 const int y8 = i8>>1;
327
328                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
329                     continue;
330                 h->sub_mb_type[i8] = sub_mb_type;
331
332                 fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mv[0][0],mv[0][1]), 4);
333                 fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mv[1][0],mv[1][1]), 4);
334                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[0], 1);
335                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, (uint8_t)ref[1], 1);
336
337                 /* col_zero_flag */
338                 if(!IS_INTRA(mb_type_col[0]) && !h->ref_list[1][0].long_ref && (   l1ref0[x8 + y8*b8_stride] == 0
339                                               || (l1ref0[x8 + y8*b8_stride] < 0 && l1ref1[x8 + y8*b8_stride] == 0
340                                                   && h->x264_build>33U))){
341                     const int16_t (*l1mv)[2]= l1ref0[x8 + y8*b8_stride] == 0 ? l1mv0 : l1mv1;
342                     if(IS_SUB_8X8(sub_mb_type)){
343                         const int16_t *mv_col = l1mv[x8*3 + y8*3*b4_stride];
344                         if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){
345                             if(ref[0] == 0)
346                                 fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
347                             if(ref[1] == 0)
348                                 fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
349                         }
350                     }else
351                     for(i4=0; i4<4; i4++){
352                         const int16_t *mv_col = l1mv[x8*2 + (i4&1) + (y8*2 + (i4>>1))*b4_stride];
353                         if(FFABS(mv_col[0]) <= 1 && FFABS(mv_col[1]) <= 1){
354                             if(ref[0] == 0)
355                                 *(uint32_t*)h->mv_cache[0][scan8[i8*4+i4]] = 0;
356                             if(ref[1] == 0)
357                                 *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = 0;
358                         }
359                     }
360                 }
361             }
362         }
363     }else{ /* direct temporal mv pred */
364         const int *map_col_to_list0[2] = {h->map_col_to_list0[0], h->map_col_to_list0[1]};
365         const int *dist_scale_factor = h->dist_scale_factor;
366         int ref_offset= 0;
367
368         if(FRAME_MBAFF && IS_INTERLACED(*mb_type)){
369             map_col_to_list0[0] = h->map_col_to_list0_field[s->mb_y&1][0];
370             map_col_to_list0[1] = h->map_col_to_list0_field[s->mb_y&1][1];
371             dist_scale_factor   =h->dist_scale_factor_field[s->mb_y&1];
372         }
373         if(h->ref_list[1][0].mbaff && IS_INTERLACED(mb_type_col[0]))
374             ref_offset += 16;
375
376         if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col[0])){
377             int y_shift  = 2*!IS_INTERLACED(*mb_type);
378             assert(h->sps.direct_8x8_inference_flag);
379
380             for(i8=0; i8<4; i8++){
381                 const int x8 = i8&1;
382                 const int y8 = i8>>1;
383                 int ref0, scale;
384                 const int16_t (*l1mv)[2]= l1mv0;
385
386                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
387                     continue;
388                 h->sub_mb_type[i8] = sub_mb_type;
389
390                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
391                 if(IS_INTRA(mb_type_col[y8])){
392                     fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);
393                     fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
394                     fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
395                     continue;
396                 }
397
398                 ref0 = l1ref0[x8 + y8*b8_stride];
399                 if(ref0 >= 0)
400                     ref0 = map_col_to_list0[0][ref0 + ref_offset];
401                 else{
402                     ref0 = map_col_to_list0[1][l1ref1[x8 + y8*b8_stride] + ref_offset];
403                     l1mv= l1mv1;
404                 }
405                 scale = dist_scale_factor[ref0];
406                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);
407
408                 {
409                     const int16_t *mv_col = l1mv[x8*3 + y8*b4_stride];
410                     int my_col = (mv_col[1]<<y_shift)/2;
411                     int mx = (scale * mv_col[0] + 128) >> 8;
412                     int my = (scale * my_col + 128) >> 8;
413                     fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mx,my), 4);
414                     fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mx-mv_col[0],my-my_col), 4);
415                 }
416             }
417             return;
418         }
419
420         /* one-to-one mv scaling */
421
422         if(IS_16X16(*mb_type)){
423             int ref, mv0, mv1;
424
425             fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, 0, 1);
426             if(IS_INTRA(mb_type_col[0])){
427                 ref=mv0=mv1=0;
428             }else{
429                 const int ref0 = l1ref0[0] >= 0 ? map_col_to_list0[0][l1ref0[0] + ref_offset]
430                                                 : map_col_to_list0[1][l1ref1[0] + ref_offset];
431                 const int scale = dist_scale_factor[ref0];
432                 const int16_t *mv_col = l1ref0[0] >= 0 ? l1mv0[0] : l1mv1[0];
433                 int mv_l0[2];
434                 mv_l0[0] = (scale * mv_col[0] + 128) >> 8;
435                 mv_l0[1] = (scale * mv_col[1] + 128) >> 8;
436                 ref= ref0;
437                 mv0= pack16to32(mv_l0[0],mv_l0[1]);
438                 mv1= pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]);
439             }
440             fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref, 1);
441             fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, mv0, 4);
442             fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, mv1, 4);
443         }else{
444             for(i8=0; i8<4; i8++){
445                 const int x8 = i8&1;
446                 const int y8 = i8>>1;
447                 int ref0, scale;
448                 const int16_t (*l1mv)[2]= l1mv0;
449
450                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
451                     continue;
452                 h->sub_mb_type[i8] = sub_mb_type;
453                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
454                 if(IS_INTRA(mb_type_col[0])){
455                     fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);
456                     fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
457                     fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
458                     continue;
459                 }
460
461                 ref0 = l1ref0[x8 + y8*b8_stride];
462                 if(ref0 >= 0)
463                     ref0 = map_col_to_list0[0][ref0 + ref_offset];
464                 else{
465                     ref0 = map_col_to_list0[1][l1ref1[x8 + y8*b8_stride] + ref_offset];
466                     l1mv= l1mv1;
467                 }
468                 scale = dist_scale_factor[ref0];
469
470                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);
471                 if(IS_SUB_8X8(sub_mb_type)){
472                     const int16_t *mv_col = l1mv[x8*3 + y8*3*b4_stride];
473                     int mx = (scale * mv_col[0] + 128) >> 8;
474                     int my = (scale * mv_col[1] + 128) >> 8;
475                     fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mx,my), 4);
476                     fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mx-mv_col[0],my-mv_col[1]), 4);
477                 }else
478                 for(i4=0; i4<4; i4++){
479                     const int16_t *mv_col = l1mv[x8*2 + (i4&1) + (y8*2 + (i4>>1))*b4_stride];
480                     int16_t *mv_l0 = h->mv_cache[0][scan8[i8*4+i4]];
481                     mv_l0[0] = (scale * mv_col[0] + 128) >> 8;
482                     mv_l0[1] = (scale * mv_col[1] + 128) >> 8;
483                     *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] =
484                         pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]);
485                 }
486             }
487         }
488     }
489 }