]> git.sesse.net Git - x264/blob - encoder/slicetype.c
Fix some uses of uninitialized row_satd values in VBV
[x264] / encoder / slicetype.c
1 /*****************************************************************************
2  * slicetype.c: h264 encoder library
3  *****************************************************************************
4  * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
19  *****************************************************************************/
20
21 #include <math.h>
22 #include <limits.h>
23
24 #include "common/common.h"
25 #include "common/cpu.h"
26 #include "macroblock.h"
27 #include "me.h"
28
29
30 static void x264_lowres_context_init( x264_t *h, x264_mb_analysis_t *a )
31 {
32     a->i_qp = 12; // arbitrary, but low because SATD scores are 1/4 normal
33     a->i_lambda = x264_lambda_tab[ a->i_qp ];
34     x264_mb_analyse_load_costs( h, a );
35     h->mb.i_me_method = X264_MIN( X264_ME_HEX, h->param.analyse.i_me_method ); // maybe dia?
36     h->mb.i_subpel_refine = 4; // 3 should be enough, but not tweaking for speed now
37     h->mb.b_chroma_me = 0;
38 }
39
40 static int x264_slicetype_mb_cost( x264_t *h, x264_mb_analysis_t *a,
41                             x264_frame_t **frames, int p0, int p1, int b,
42                             int dist_scale_factor )
43 {
44     x264_frame_t *fref0 = frames[p0];
45     x264_frame_t *fref1 = frames[p1];
46     x264_frame_t *fenc  = frames[b];
47     const int b_bidir = (b < p1);
48     const int i_mb_x = h->mb.i_mb_x;
49     const int i_mb_y = h->mb.i_mb_y;
50     const int i_mb_stride = h->sps->i_mb_width;
51     const int i_mb_xy = i_mb_x + i_mb_y * i_mb_stride;
52     const int i_stride = fenc->i_stride_lowres;
53     const int i_pel_offset = 8 * ( i_mb_x + i_mb_y * i_stride );
54
55     DECLARE_ALIGNED_8( uint8_t pix1[9*FDEC_STRIDE] );
56     uint8_t *pix2 = pix1+8;
57     x264_me_t m[2];
58     int i_bcost = COST_MAX;
59     int i_cost_bak;
60     int l, i;
61
62     h->mb.pic.p_fenc[0] = h->mb.pic.fenc_buf;
63     h->mc.copy[PIXEL_8x8]( h->mb.pic.p_fenc[0], FENC_STRIDE, &fenc->lowres[0][i_pel_offset], i_stride, 8 );
64
65     if( !p0 && !p1 && !b )
66         goto lowres_intra_mb;
67
68     // no need for h->mb.mv_min[]
69     h->mb.mv_min_fpel[0] = -8*h->mb.i_mb_x - 4;
70     h->mb.mv_max_fpel[0] = 8*( h->sps->i_mb_width - h->mb.i_mb_x - 1 ) + 4;
71     h->mb.mv_min_spel[0] = 4*( h->mb.mv_min_fpel[0] - 8 );
72     h->mb.mv_max_spel[0] = 4*( h->mb.mv_max_fpel[0] + 8 );
73     if( h->mb.i_mb_x <= 1 )
74     {
75         h->mb.mv_min_fpel[1] = -8*h->mb.i_mb_y - 4;
76         h->mb.mv_max_fpel[1] = 8*( h->sps->i_mb_height - h->mb.i_mb_y - 1 ) + 4;
77         h->mb.mv_min_spel[1] = 4*( h->mb.mv_min_fpel[1] - 8 );
78         h->mb.mv_max_spel[1] = 4*( h->mb.mv_max_fpel[1] + 8 );
79     }
80
81 #define LOAD_HPELS_LUMA(dst, src) \
82     { \
83         (dst)[0] = &(src)[0][i_pel_offset]; \
84         (dst)[1] = &(src)[1][i_pel_offset]; \
85         (dst)[2] = &(src)[2][i_pel_offset]; \
86         (dst)[3] = &(src)[3][i_pel_offset]; \
87     }
88 #define SAVE_MVS( mv0, mv1 ) \
89     { \
90         *(uint32_t*)fenc->mv[0][i_mb_xy] = *(uint32_t*)mv0; \
91         if( b_bidir ) \
92             *(uint32_t*)fenc->mv[1][i_mb_xy] = *(uint32_t*)mv1; \
93     }
94 #define CLIP_MV( mv ) \
95     { \
96         mv[0] = x264_clip3( mv[0], h->mb.mv_min_spel[0], h->mb.mv_max_spel[0] ); \
97         mv[1] = x264_clip3( mv[1], h->mb.mv_min_spel[1], h->mb.mv_max_spel[1] ); \
98     }
99 #define TRY_BIDIR( mv0, mv1, penalty ) \
100     { \
101         int stride2 = 16; \
102         uint8_t *src2; \
103         int i_cost; \
104         h->mc.mc_luma( pix1, 16, m[0].p_fref, m[0].i_stride[0], \
105                        (mv0)[0], (mv0)[1], 8, 8 ); \
106         src2 = h->mc.get_ref( pix2, &stride2, m[1].p_fref, m[1].i_stride[0], \
107                        (mv1)[0], (mv1)[1], 8, 8 ); \
108         h->mc.avg[PIXEL_8x8]( pix1, 16, src2, stride2 ); \
109         i_cost = penalty + h->pixf.mbcmp[PIXEL_8x8]( \
110                            m[0].p_fenc[0], FENC_STRIDE, pix1, 16 ); \
111         if( i_bcost > i_cost ) \
112         { \
113             i_bcost = i_cost; \
114             SAVE_MVS( mv0, mv1 ); \
115         } \
116     }
117
118     m[0].i_pixel = PIXEL_8x8;
119     m[0].p_cost_mv = a->p_cost_mv;
120     m[0].i_stride[0] = i_stride;
121     m[0].p_fenc[0] = h->mb.pic.p_fenc[0];
122     LOAD_HPELS_LUMA( m[0].p_fref, fref0->lowres );
123
124     if( b_bidir )
125     {
126         int16_t *mvr = fref1->mv[0][i_mb_xy];
127         int dmv[2][2];
128         int mv0[2] = {0,0};
129
130         h->mc.memcpy_aligned( &m[1], &m[0], sizeof(x264_me_t) );
131         LOAD_HPELS_LUMA( m[1].p_fref, fref1->lowres );
132
133         dmv[0][0] = ( mvr[0] * dist_scale_factor + 128 ) >> 8;
134         dmv[0][1] = ( mvr[1] * dist_scale_factor + 128 ) >> 8;
135         dmv[1][0] = dmv[0][0] - mvr[0];
136         dmv[1][1] = dmv[0][1] - mvr[1];
137         CLIP_MV( dmv[0] );
138         CLIP_MV( dmv[1] );
139
140         TRY_BIDIR( dmv[0], dmv[1], 0 );
141         if( dmv[0][0] | dmv[0][1] | dmv[1][0] | dmv[1][1] )
142            TRY_BIDIR( mv0, mv0, 0 );
143 //      if( i_bcost < 60 ) // arbitrary threshold
144 //          return i_bcost;
145     }
146
147     i_cost_bak = i_bcost;
148     for( l = 0; l < 1 + b_bidir; l++ )
149     {
150         DECLARE_ALIGNED_4(int16_t mvc[4][2]) = {{0}};
151         int i_mvc = 0;
152         int16_t (*fenc_mv)[2] = &fenc->mv[l][i_mb_xy];
153 #define MVC(mv) { *(uint32_t*)mvc[i_mvc] = *(uint32_t*)mv; i_mvc++; }
154         if( i_mb_x > 0 )
155             MVC(fenc_mv[-1]);
156         if( i_mb_y > 0 )
157         {
158             MVC(fenc_mv[-i_mb_stride]);
159             if( i_mb_x < h->sps->i_mb_width - 1 )
160                 MVC(fenc_mv[-i_mb_stride+1]);
161             if( i_mb_x > 0 )
162                 MVC(fenc_mv[-i_mb_stride-1]);
163         }
164 #undef MVC
165         x264_median_mv( m[l].mvp, mvc[0], mvc[1], mvc[2] );
166         x264_me_search( h, &m[l], mvc, i_mvc );
167
168         m[l].cost -= 2; // remove mvcost from skip mbs
169         if( *(uint32_t*)m[l].mv )
170             m[l].cost += 5;
171         i_bcost = X264_MIN( i_bcost, m[l].cost );
172     }
173
174     if( b_bidir && ( *(uint32_t*)m[0].mv || *(uint32_t*)m[1].mv ) )
175         TRY_BIDIR( m[0].mv, m[1].mv, 5 );
176
177     if( i_bcost < i_cost_bak )
178         SAVE_MVS( m[0].mv, m[1].mv );
179
180     //FIXME intra part could be shared across multiple encodings of the frame
181 lowres_intra_mb:
182     if( !b_bidir ) // forbid intra-mbs in B-frames, because it's rare and not worth checking
183     {
184         uint8_t *pix = &pix1[8+FDEC_STRIDE - 1];
185         uint8_t *src = &fenc->lowres[0][i_pel_offset - 1];
186         const int intra_penalty = 5;
187         int satds[4], i_icost, b_intra;
188
189         memcpy( pix-FDEC_STRIDE, src-i_stride, 17 );
190         for( i=0; i<8; i++ )
191             pix[i*FDEC_STRIDE] = src[i*i_stride];
192         pix++;
193
194         if( h->pixf.intra_satd_x3_8x8c && h->pixf.mbcmp[0] == h->pixf.satd[0] )
195         {
196             h->pixf.intra_satd_x3_8x8c( h->mb.pic.p_fenc[0], pix, satds );
197             h->predict_8x8c[I_PRED_CHROMA_P]( pix );
198             satds[I_PRED_CHROMA_P] =
199                 h->pixf.satd[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
200         }
201         else
202         {
203             for( i=0; i<4; i++ )
204             {
205                 h->predict_8x8c[i]( pix );
206                 satds[i] = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
207             }
208         }
209         i_icost = X264_MIN4( satds[0], satds[1], satds[2], satds[3] );
210
211         if( i_icost < i_bcost * 2 )
212         {
213             DECLARE_ALIGNED_16( uint8_t edge[33] );
214             x264_predict_8x8_filter( pix, edge, ALL_NEIGHBORS, ALL_NEIGHBORS );
215             for( i=3; i<9; i++ )
216             {
217                 int satd;
218                 h->predict_8x8[i]( pix, edge );
219                 satd = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
220                 i_icost = X264_MIN( i_icost, satd );
221             }
222         }
223
224         i_icost += intra_penalty;
225         b_intra = i_icost < i_bcost;
226         if( b_intra )
227             i_bcost = i_icost;
228         if(    i_mb_x > 0 && i_mb_x < h->sps->i_mb_width - 1
229             && i_mb_y > 0 && i_mb_y < h->sps->i_mb_height - 1 )
230         {
231             fenc->i_intra_mbs[b-p0] += b_intra;
232             fenc->i_cost_est[0][0] += i_icost;
233         }
234     }
235
236     return i_bcost;
237 }
238 #undef TRY_BIDIR
239 #undef SAVE_MVS
240
241 static int x264_slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,
242                                x264_frame_t **frames, int p0, int p1, int b,
243                                int b_intra_penalty )
244 {
245     int i_score = 0;
246
247     /* Check whether we already evaluated this frame
248      * If we have tried this frame as P, then we have also tried
249      * the preceding frames as B. (is this still true?) */
250     /* Also check that we already calculated the row SATDs for the current frame. */
251     if( frames[b]->i_cost_est[b-p0][p1-b] >= 0 && frames[b]->i_row_satds[b-p0][p1-b][0] != -1 )
252     {
253         i_score = frames[b]->i_cost_est[b-p0][p1-b];
254     }
255     else
256     {
257         int dist_scale_factor = 128;
258         int *row_satd = frames[b]->i_row_satds[b-p0][p1-b];
259
260         /* Init MVs so that we don't have to check edge conditions when loading predictors. */
261         /* FIXME: not needed every time */
262         memset( frames[b]->mv[0], 0, h->sps->i_mb_height * h->sps->i_mb_width * 2*sizeof(int16_t) );
263         if( b != p1 )
264             memset( frames[b]->mv[1], 0, h->sps->i_mb_height * h->sps->i_mb_width * 2*sizeof(int16_t) );
265
266         if( b == p1 )
267         {
268             frames[b]->i_intra_mbs[b-p0] = 0;
269             frames[b]->i_cost_est[0][0] = 0;
270         }
271         if( p1 != p0 )
272             dist_scale_factor = ( ((b-p0) << 8) + ((p1-p0) >> 1) ) / (p1-p0);
273
274         /* the edge mbs seem to reduce the predictive quality of the
275          * whole frame's score, but are needed for a spatial distribution. */
276         if( h->param.rc.i_vbv_buffer_size )
277         {
278             for( h->mb.i_mb_y = 0; h->mb.i_mb_y < h->sps->i_mb_height; h->mb.i_mb_y++ )
279             {
280                 row_satd[ h->mb.i_mb_y ] = 0;
281                 for( h->mb.i_mb_x = 0; h->mb.i_mb_x < h->sps->i_mb_width; h->mb.i_mb_x++ )
282                 {
283                     int i_mb_cost = x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor );
284                     row_satd[ h->mb.i_mb_y ] += i_mb_cost;
285                     if( h->mb.i_mb_y > 0 && h->mb.i_mb_y < h->sps->i_mb_height - 1 &&
286                         h->mb.i_mb_x > 0 && h->mb.i_mb_x < h->sps->i_mb_width - 1 )
287                     {
288                         i_score += i_mb_cost;
289                     }
290                 }
291             }
292         }
293         else
294         {
295             for( h->mb.i_mb_y = 1; h->mb.i_mb_y < h->sps->i_mb_height - 1; h->mb.i_mb_y++ )
296                 for( h->mb.i_mb_x = 1; h->mb.i_mb_x < h->sps->i_mb_width - 1; h->mb.i_mb_x++ )
297                     i_score += x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor );
298         }
299
300         if( b != p1 )
301             i_score = i_score * 100 / (120 + h->param.i_bframe_bias);
302
303         frames[b]->i_cost_est[b-p0][p1-b] = i_score;
304 //      fprintf( stderr, "frm %d %c(%d,%d): %6d %6d imb:%d  \n", frames[b]->i_frame,
305 //               (p1==0?'I':b<p1?'B':'P'), b-p0, p1-b, i_score, frames[b]->i_cost_est[0][0], frames[b]->i_intra_mbs[b-p0] );
306         x264_emms();
307     }
308
309     if( b_intra_penalty )
310     {
311         // arbitrary penalty for I-blocks after B-frames
312         int nmb = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2);
313         i_score += i_score * frames[b]->i_intra_mbs[b-p0] / (nmb * 8);
314     }
315     return i_score;
316 }
317
318 static int scenecut( x264_t *h, x264_frame_t *frame, int pdist )
319 {
320     int icost = frame->i_cost_est[0][0];
321     int pcost = frame->i_cost_est[pdist][0];
322     float f_bias;
323     int i_gop_size = frame->i_frame - h->frames.i_last_idr;
324     float f_thresh_max = h->param.i_scenecut_threshold / 100.0;
325     /* magic numbers pulled out of thin air */
326     float f_thresh_min = f_thresh_max * h->param.i_keyint_min
327                          / ( h->param.i_keyint_max * 4 );
328     int res;
329
330     if( h->param.i_keyint_min == h->param.i_keyint_max )
331         f_thresh_min= f_thresh_max;
332     if( i_gop_size < h->param.i_keyint_min / 4 )
333         f_bias = f_thresh_min / 4;
334     else if( i_gop_size <= h->param.i_keyint_min )
335         f_bias = f_thresh_min * i_gop_size / h->param.i_keyint_min;
336     else
337     {
338         f_bias = f_thresh_min
339                  + ( f_thresh_max - f_thresh_min )
340                    * ( i_gop_size - h->param.i_keyint_min )
341                    / ( h->param.i_keyint_max - h->param.i_keyint_min );
342     }
343
344     res = pcost >= (1.0 - f_bias) * icost;
345     if( res )
346     {
347         int imb = frame->i_intra_mbs[pdist];
348         int pmb = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2) - imb;
349         x264_log( h, X264_LOG_DEBUG, "scene cut at %d Icost:%d Pcost:%d ratio:%.4f bias:%.4f gop:%d (imb:%d pmb:%d)\n",
350                   frame->i_frame,
351                   icost, pcost, 1. - (double)pcost / icost,
352                   f_bias, i_gop_size, imb, pmb );
353     }
354     return res;
355 }
356
357 static void x264_slicetype_analyse( x264_t *h )
358 {
359     x264_mb_analysis_t a;
360     x264_frame_t *frames[X264_BFRAME_MAX+3] = { NULL, };
361     int num_frames;
362     int keyint_limit;
363     int j;
364     int i_mb_count = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2);
365     int cost1p0, cost2p0, cost1b1, cost2p1;
366     int idr_frame_type;
367
368     assert( h->frames.b_have_lowres );
369
370     if( !h->frames.last_nonb )
371         return;
372     frames[0] = h->frames.last_nonb;
373     for( j = 0; h->frames.next[j]; j++ )
374         frames[j+1] = h->frames.next[j];
375     keyint_limit = h->param.i_keyint_max - frames[0]->i_frame + h->frames.i_last_idr - 1;
376     num_frames = X264_MIN( j, keyint_limit );
377     if( num_frames == 0 )
378         return;
379
380     x264_lowres_context_init( h, &a );
381     idr_frame_type = frames[1]->i_frame - h->frames.i_last_idr >= h->param.i_keyint_min ? X264_TYPE_IDR : X264_TYPE_I;
382
383     if( num_frames == 1 )
384     {
385 no_b_frames:
386         frames[1]->i_type = X264_TYPE_P;
387         if( h->param.b_pre_scenecut )
388         {
389             x264_slicetype_frame_cost( h, &a, frames, 0, 1, 1, 0 );
390             if( scenecut( h, frames[1], 1 ) )
391                 frames[1]->i_type = idr_frame_type;
392         }
393         return;
394     }
395
396     cost2p1 = x264_slicetype_frame_cost( h, &a, frames, 0, 2, 2, 1 );
397     if( frames[2]->i_intra_mbs[2] > i_mb_count / 2 )
398         goto no_b_frames;
399
400     cost1b1 = x264_slicetype_frame_cost( h, &a, frames, 0, 2, 1, 0 );
401     cost1p0 = x264_slicetype_frame_cost( h, &a, frames, 0, 1, 1, 0 );
402     cost2p0 = x264_slicetype_frame_cost( h, &a, frames, 1, 2, 2, 0 );
403 //  fprintf( stderr, "PP: %d + %d <=> BP: %d + %d \n",
404 //           cost1p0, cost2p0, cost1b1, cost2p1 );
405     if( cost1p0 + cost2p0 < cost1b1 + cost2p1 )
406         goto no_b_frames;
407
408 // arbitrary and untuned
409 #define INTER_THRESH 300
410 #define P_SENS_BIAS (50 - h->param.i_bframe_bias)
411     frames[1]->i_type = X264_TYPE_B;
412
413     for( j = 2; j <= X264_MIN( h->param.i_bframe, num_frames-1 ); j++ )
414     {
415         int pthresh = X264_MAX(INTER_THRESH - P_SENS_BIAS * (j-1), INTER_THRESH/10);
416         int pcost = x264_slicetype_frame_cost( h, &a, frames, 0, j+1, j+1, 1 );
417 //      fprintf( stderr, "frm%d+%d: %d <=> %d, I:%d/%d \n",
418 //               frames[0]->i_frame, j-1, pthresh, pcost/i_mb_count,
419 //               frames[j+1]->i_intra_mbs[j+1], i_mb_count );
420         if( pcost > pthresh*i_mb_count || frames[j+1]->i_intra_mbs[j+1] > i_mb_count/3 )
421         {
422             frames[j]->i_type = X264_TYPE_P;
423             break;
424         }
425         else
426             frames[j]->i_type = X264_TYPE_B;
427     }
428 }
429
430 void x264_slicetype_decide( x264_t *h )
431 {
432     x264_frame_t *frm;
433     int bframes;
434     int i;
435
436     if( h->frames.next[0] == NULL )
437         return;
438
439     if( h->param.rc.b_stat_read )
440     {
441         /* Use the frame types from the first pass */
442         for( i = 0; h->frames.next[i] != NULL; i++ )
443             h->frames.next[i]->i_type =
444                 x264_ratecontrol_slice_type( h, h->frames.next[i]->i_frame );
445     }
446     else if( (h->param.i_bframe && h->param.b_bframe_adaptive)
447              || h->param.b_pre_scenecut )
448         x264_slicetype_analyse( h );
449
450     for( bframes = 0;; bframes++ )
451     {
452         frm = h->frames.next[bframes];
453
454         /* Limit GOP size */
455         if( frm->i_frame - h->frames.i_last_idr >= h->param.i_keyint_max )
456         {
457             if( frm->i_type == X264_TYPE_AUTO )
458                 frm->i_type = X264_TYPE_IDR;
459             if( frm->i_type != X264_TYPE_IDR )
460                 x264_log( h, X264_LOG_WARNING, "specified frame type (%d) is not compatible with keyframe interval\n", frm->i_type );
461         }
462         if( frm->i_type == X264_TYPE_IDR )
463         {
464             /* Close GOP */
465             if( bframes > 0 )
466             {
467                 bframes--;
468                 h->frames.next[bframes]->i_type = X264_TYPE_P;
469             }
470             else
471             {
472                 h->i_frame_num = 0;
473             }
474         }
475
476         if( bframes == h->param.i_bframe
477             || h->frames.next[bframes+1] == NULL )
478         {
479             if( IS_X264_TYPE_B( frm->i_type ) )
480                 x264_log( h, X264_LOG_WARNING, "specified frame type is not compatible with max B-frames\n" );
481             if( frm->i_type == X264_TYPE_AUTO
482                 || IS_X264_TYPE_B( frm->i_type ) )
483                 frm->i_type = X264_TYPE_P;
484         }
485
486         if( frm->i_type != X264_TYPE_AUTO && frm->i_type != X264_TYPE_B && frm->i_type != X264_TYPE_BREF )
487             break;
488
489         frm->i_type = X264_TYPE_B;
490     }
491 }
492
493 int x264_rc_analyse_slice( x264_t *h )
494 {
495     x264_mb_analysis_t a;
496     x264_frame_t *frames[X264_BFRAME_MAX+2] = { NULL, };
497     int p0=0, p1, b;
498     int cost;
499
500     x264_lowres_context_init( h, &a );
501
502     if( IS_X264_TYPE_I(h->fenc->i_type) )
503     {
504         p1 = b = 0;
505     }
506     else if( X264_TYPE_P == h->fenc->i_type )
507     {
508         p1 = 0;
509         while( h->frames.current[p1] && IS_X264_TYPE_B( h->frames.current[p1]->i_type ) )
510             p1++;
511         p1++;
512         b = p1;
513     }
514     else //B
515     {
516         p1 = (h->fref1[0]->i_poc - h->fref0[0]->i_poc)/2;
517         b  = (h->fref1[0]->i_poc - h->fenc->i_poc)/2;
518         frames[p1] = h->fref1[0];
519     }
520     frames[p0] = h->fref0[0];
521     frames[b] = h->fenc;
522
523     cost = x264_slicetype_frame_cost( h, &a, frames, p0, p1, b, 0 );
524     h->fenc->i_row_satd = h->fenc->i_row_satds[b-p0][p1-b];
525     h->fdec->i_row_satd = h->fdec->i_row_satds[b-p0][p1-b];
526     h->fdec->i_satd = cost;
527     memcpy( h->fdec->i_row_satd, h->fenc->i_row_satd, h->sps->i_mb_height * sizeof(int) );
528     return cost;
529 }