]> git.sesse.net Git - x264/blob - encoder/slicetype.c
Optimize out some x264_scan8 reads
[x264] / encoder / slicetype.c
1 /*****************************************************************************
2  * slicetype.c: h264 encoder library
3  *****************************************************************************
4  * Copyright (C) 2005-2008 x264 project
5  *
6  * Authors: Fiona Glaser <fiona@x264.com>
7  *          Loren Merritt <lorenm@u.washington.edu>
8  *          Dylan Yudaken <dyudaken@gmail.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <math.h>
26
27 #include "common/common.h"
28 #include "macroblock.h"
29 #include "me.h"
30
31 // Indexed by pic_struct values
32 static const uint8_t delta_tfi_divisor[10] = { 0, 2, 1, 1, 2, 2, 3, 3, 4, 6 };
33
34 static int x264_slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,
35                                       x264_frame_t **frames, int p0, int p1, int b,
36                                       int b_intra_penalty );
37
38 static void x264_lowres_context_init( x264_t *h, x264_mb_analysis_t *a )
39 {
40     a->i_qp = X264_LOOKAHEAD_QP;
41     a->i_lambda = x264_lambda_tab[ a->i_qp ];
42     x264_mb_analyse_load_costs( h, a );
43     if( h->param.analyse.i_subpel_refine > 1 )
44     {
45         h->mb.i_me_method = X264_MIN( X264_ME_HEX, h->param.analyse.i_me_method );
46         h->mb.i_subpel_refine = 4;
47     }
48     else
49     {
50         h->mb.i_me_method = X264_ME_DIA;
51         h->mb.i_subpel_refine = 2;
52     }
53     h->mb.b_chroma_me = 0;
54 }
55
56 /* makes a non-h264 weight (i.e. fix7), into an h264 weight */
57 static void x264_weight_get_h264( unsigned int weight_nonh264, int offset, x264_weight_t *w )
58 {
59     w->i_offset = offset;
60     w->i_denom = 7;
61     w->i_scale = weight_nonh264;
62     while( w->i_denom > 0 && (w->i_scale > 127 || !(w->i_scale & 1)) )
63     {
64         w->i_denom--;
65         w->i_scale >>= 1;
66     }
67     w->i_scale = X264_MIN( w->i_scale, 127 );
68 }
69
70 static NOINLINE uint8_t *x264_weight_cost_init_luma( x264_t *h, x264_frame_t *fenc, x264_frame_t *ref, uint8_t *dest )
71 {
72     int ref0_distance = fenc->i_frame - ref->i_frame - 1;
73     /* Note: this will never run during lookahead as weights_analyse is only called if no
74      * motion search has been done. */
75     if( fenc->lowres_mvs[0][ref0_distance][0][0] != 0x7FFF )
76     {
77         int i_stride = fenc->i_stride_lowres;
78         int i_lines = fenc->i_lines_lowres;
79         int i_width = fenc->i_width_lowres;
80         int i_mb_xy = 0;
81         uint8_t *p = dest;
82
83         for( int y = 0; y < i_lines; y += 8, p += i_stride*8 )
84             for( int x = 0; x < i_width; x += 8, i_mb_xy++ )
85             {
86                 int mvx = fenc->lowres_mvs[0][ref0_distance][i_mb_xy][0];
87                 int mvy = fenc->lowres_mvs[0][ref0_distance][i_mb_xy][1];
88                 h->mc.mc_luma( p+x, i_stride, ref->lowres, i_stride,
89                                mvx+(x<<2), mvy+(y<<2), 8, 8, weight_none );
90             }
91         x264_emms();
92         return dest;
93     }
94     x264_emms();
95     return ref->lowres[0];
96 }
97
98 static NOINLINE unsigned int x264_weight_cost( x264_t *h, x264_frame_t *fenc, uint8_t *src, x264_weight_t *w )
99 {
100     unsigned int cost = 0;
101     int i_stride = fenc->i_stride_lowres;
102     int i_lines = fenc->i_lines_lowres;
103     int i_width = fenc->i_width_lowres;
104     uint8_t *fenc_plane = fenc->lowres[0];
105     ALIGNED_ARRAY_8( uint8_t, buf,[8*8] );
106     int pixoff = 0;
107     int i_mb = 0;
108
109     if( w )
110     {
111         for( int y = 0; y < i_lines; y += 8, pixoff = y*i_stride )
112             for( int x = 0; x < i_width; x += 8, i_mb++, pixoff += 8)
113             {
114                 w->weightfn[8>>2]( buf, 8, &src[pixoff], i_stride, w, 8 );
115                 cost += X264_MIN( h->pixf.mbcmp[PIXEL_8x8]( buf, 8, &fenc_plane[pixoff], i_stride ), fenc->i_intra_cost[i_mb] );
116             }
117         /* Add cost of weights in the slice header. */
118         int numslices;
119         if( h->param.i_slice_count )
120             numslices = h->param.i_slice_count;
121         else if( h->param.i_slice_max_mbs )
122             numslices = (h->sps->i_mb_width * h->sps->i_mb_height + h->param.i_slice_max_mbs-1) / h->param.i_slice_max_mbs;
123         else
124             numslices = 1;
125         /* FIXME: find a way to account for --slice-max-size?
126          * Multiply by 2 as there will be a duplicate. 10 bits added as if there is a weighted frame, then an additional duplicate is used.
127          * Since using lowres frames, assume lambda = 1. */
128         cost += numslices * ( 10 + 2 * ( bs_size_ue( w[0].i_denom ) + bs_size_se( w[0].i_scale ) + bs_size_se( w[0].i_offset ) ) );
129     }
130     else
131         for( int y = 0; y < i_lines; y += 8, pixoff = y*i_stride )
132             for( int x = 0; x < i_width; x += 8, i_mb++, pixoff += 8 )
133                 cost += X264_MIN( h->pixf.mbcmp[PIXEL_8x8]( &src[pixoff], i_stride, &fenc_plane[pixoff], i_stride ), fenc->i_intra_cost[i_mb] );
134     x264_emms();
135     return cost;
136 }
137
138 void x264_weights_analyse( x264_t *h, x264_frame_t *fenc, x264_frame_t *ref, int b_lookahead )
139 {
140     float fenc_mean, ref_mean, fenc_var, ref_var;
141     int offset_search;
142     int minoff, minscale, mindenom;
143     unsigned int minscore, origscore;
144     int i_delta_index = fenc->i_frame - ref->i_frame - 1;
145     /* epsilon is chosen to require at least a numerator of 127 (with denominator = 128) */
146     const float epsilon = 1.0/128.0;
147     float guess_scale;
148     int found;
149     x264_weight_t *weights = fenc->weight[0];
150
151     fenc_var = round( sqrt( fenc->i_pixel_ssd[0] ) );
152     ref_var  = round( sqrt(  ref->i_pixel_ssd[0] ) );
153     fenc_mean = (float)fenc->i_pixel_sum[0] / (fenc->i_lines[0] * fenc->i_width[0]);
154     ref_mean  = (float) ref->i_pixel_sum[0] / (fenc->i_lines[0] * fenc->i_width[0]);
155
156     //early termination
157     if( fabs( ref_mean - fenc_mean ) < 0.5 && fabs( 1 - fenc_var / ref_var ) < epsilon )
158     {
159         SET_WEIGHT( weights[0], 0, 1, 0, 0 );
160         return;
161     }
162
163     guess_scale = ref_var ? fenc_var/ref_var : 0;
164     x264_weight_get_h264( round( guess_scale * 128 ), 0, &weights[0] );
165
166     found = 0;
167     mindenom = weights[0].i_denom;
168     minscale = weights[0].i_scale;
169     minoff = 0;
170     offset_search = x264_clip3( floor( fenc_mean - ref_mean * minscale / (1 << mindenom) + 0.5f*b_lookahead ), -128, 126 );
171
172     if( !fenc->b_intra_calculated )
173     {
174         x264_mb_analysis_t a;
175         x264_lowres_context_init( h, &a );
176         x264_slicetype_frame_cost( h, &a, &fenc, 0, 0, 0, 0 );
177     }
178     uint8_t *mcbuf = x264_weight_cost_init_luma( h, fenc, ref, h->mb.p_weight_buf[0] );
179     origscore = minscore = x264_weight_cost( h, fenc, mcbuf, 0 );
180
181     if( !minscore )
182     {
183         SET_WEIGHT( weights[0], 0, 1, 0, 0 );
184         return;
185     }
186
187     // This gives a slight improvement due to rounding errors but only tests
188     // one offset on lookahead.
189     // TODO: currently searches only offset +1. try other offsets/multipliers/combinations thereof?
190     for( int i_off = offset_search; i_off <= offset_search+!b_lookahead; i_off++ )
191     {
192         SET_WEIGHT( weights[0], 1, minscale, mindenom, i_off );
193         unsigned int s = x264_weight_cost( h, fenc, mcbuf, &weights[0] );
194         COPY3_IF_LT( minscore, s, minoff, i_off, found, 1 );
195     }
196     x264_emms();
197
198     /* FIXME: More analysis can be done here on SAD vs. SATD termination. */
199     /* 0.2% termination derived experimentally to avoid weird weights in frames that are mostly intra. */
200     if( !found || (minscale == 1<<mindenom && minoff == 0) || (float)minscore / origscore > 0.998 )
201     {
202         SET_WEIGHT( weights[0], 0, 1, 0, 0 );
203         return;
204     }
205     else
206         SET_WEIGHT( weights[0], 1, minscale, mindenom, minoff );
207
208     if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_FAKE && weights[0].weightfn )
209         fenc->f_weighted_cost_delta[i_delta_index] = (float)minscore / origscore;
210
211     if( weights[0].weightfn && b_lookahead )
212     {
213         //scale lowres in lookahead for slicetype_frame_cost
214         uint8_t *src = ref->buffer_lowres[0];
215         uint8_t *dst = h->mb.p_weight_buf[0];
216         int width = ref->i_width_lowres + PADH*2;
217         int height = ref->i_lines_lowres + PADV*2;
218         x264_weight_scale_plane( h, dst, ref->i_stride_lowres, src, ref->i_stride_lowres,
219                                  width, height, &weights[0] );
220         fenc->weighted[0] = h->mb.p_weight_buf[0] + PADH + ref->i_stride_lowres * PADV;
221     }
222 }
223
224 static void x264_slicetype_mb_cost( x264_t *h, x264_mb_analysis_t *a,
225                                     x264_frame_t **frames, int p0, int p1, int b,
226                                     int dist_scale_factor, int do_search[2], const x264_weight_t *w )
227 {
228     x264_frame_t *fref0 = frames[p0];
229     x264_frame_t *fref1 = frames[p1];
230     x264_frame_t *fenc  = frames[b];
231     const int b_bidir = (b < p1);
232     const int i_mb_x = h->mb.i_mb_x;
233     const int i_mb_y = h->mb.i_mb_y;
234     const int i_mb_stride = h->sps->i_mb_width;
235     const int i_mb_xy = i_mb_x + i_mb_y * i_mb_stride;
236     const int i_stride = fenc->i_stride_lowres;
237     const int i_pel_offset = 8 * (i_mb_x + i_mb_y * i_stride);
238     const int i_bipred_weight = h->param.analyse.b_weighted_bipred ? 64 - (dist_scale_factor>>2) : 32;
239     int16_t (*fenc_mvs[2])[2] = { &frames[b]->lowres_mvs[0][b-p0-1][i_mb_xy], &frames[b]->lowres_mvs[1][p1-b-1][i_mb_xy] };
240     int (*fenc_costs[2]) = { &frames[b]->lowres_mv_costs[0][b-p0-1][i_mb_xy], &frames[b]->lowres_mv_costs[1][p1-b-1][i_mb_xy] };
241     int b_frame_score_mb = (i_mb_x > 0 && i_mb_x < h->sps->i_mb_width - 1 &&
242                             i_mb_y > 0 && i_mb_y < h->sps->i_mb_height - 1) ||
243                             h->sps->i_mb_width <= 2 || h->sps->i_mb_height <= 2;
244
245     ALIGNED_ARRAY_8( uint8_t, pix1,[9*FDEC_STRIDE] );
246     uint8_t *pix2 = pix1+8;
247     x264_me_t m[2];
248     int i_bcost = COST_MAX;
249     int list_used = 0;
250
251     h->mb.pic.p_fenc[0] = h->mb.pic.fenc_buf;
252     h->mc.copy[PIXEL_8x8]( h->mb.pic.p_fenc[0], FENC_STRIDE, &fenc->lowres[0][i_pel_offset], i_stride, 8 );
253
254     if( p0 == p1 )
255         goto lowres_intra_mb;
256
257     // no need for h->mb.mv_min[]
258     h->mb.mv_min_fpel[0] = -8*h->mb.i_mb_x - 4;
259     h->mb.mv_max_fpel[0] = 8*( h->sps->i_mb_width - h->mb.i_mb_x - 1 ) + 4;
260     h->mb.mv_min_spel[0] = 4*( h->mb.mv_min_fpel[0] - 8 );
261     h->mb.mv_max_spel[0] = 4*( h->mb.mv_max_fpel[0] + 8 );
262     if( h->mb.i_mb_x >= h->sps->i_mb_width - 2 )
263     {
264         h->mb.mv_min_fpel[1] = -8*h->mb.i_mb_y - 4;
265         h->mb.mv_max_fpel[1] = 8*( h->sps->i_mb_height - h->mb.i_mb_y - 1 ) + 4;
266         h->mb.mv_min_spel[1] = 4*( h->mb.mv_min_fpel[1] - 8 );
267         h->mb.mv_max_spel[1] = 4*( h->mb.mv_max_fpel[1] + 8 );
268     }
269
270 #define LOAD_HPELS_LUMA(dst, src) \
271     { \
272         (dst)[0] = &(src)[0][i_pel_offset]; \
273         (dst)[1] = &(src)[1][i_pel_offset]; \
274         (dst)[2] = &(src)[2][i_pel_offset]; \
275         (dst)[3] = &(src)[3][i_pel_offset]; \
276     }
277 #define LOAD_WPELS_LUMA(dst,src) \
278     (dst) = &(src)[i_pel_offset];
279
280 #define CLIP_MV( mv ) \
281     { \
282         mv[0] = x264_clip3( mv[0], h->mb.mv_min_spel[0], h->mb.mv_max_spel[0] ); \
283         mv[1] = x264_clip3( mv[1], h->mb.mv_min_spel[1], h->mb.mv_max_spel[1] ); \
284     }
285 #define TRY_BIDIR( mv0, mv1, penalty ) \
286     { \
287         int i_cost; \
288         if( h->param.analyse.i_subpel_refine <= 1 ) \
289         { \
290             int hpel_idx1 = (((mv0)[0]&2)>>1) + ((mv0)[1]&2); \
291             int hpel_idx2 = (((mv1)[0]&2)>>1) + ((mv1)[1]&2); \
292             uint8_t *src1 = m[0].p_fref[hpel_idx1] + ((mv0)[0]>>2) + ((mv0)[1]>>2) * m[0].i_stride[0]; \
293             uint8_t *src2 = m[1].p_fref[hpel_idx2] + ((mv1)[0]>>2) + ((mv1)[1]>>2) * m[1].i_stride[0]; \
294             h->mc.avg[PIXEL_8x8]( pix1, 16, src1, m[0].i_stride[0], src2, m[1].i_stride[0], i_bipred_weight ); \
295         } \
296         else \
297         { \
298             int stride1 = 16, stride2 = 16; \
299             uint8_t *src1, *src2; \
300             src1 = h->mc.get_ref( pix1, &stride1, m[0].p_fref, m[0].i_stride[0], \
301                                   (mv0)[0], (mv0)[1], 8, 8, w ); \
302             src2 = h->mc.get_ref( pix2, &stride2, m[1].p_fref, m[1].i_stride[0], \
303                                   (mv1)[0], (mv1)[1], 8, 8, w ); \
304             h->mc.avg[PIXEL_8x8]( pix1, 16, src1, stride1, src2, stride2, i_bipred_weight ); \
305         } \
306         i_cost = penalty + h->pixf.mbcmp[PIXEL_8x8]( \
307                            m[0].p_fenc[0], FENC_STRIDE, pix1, 16 ); \
308         COPY2_IF_LT( i_bcost, i_cost, list_used, 3 ); \
309     }
310
311     m[0].i_pixel = PIXEL_8x8;
312     m[0].p_cost_mv = a->p_cost_mv;
313     m[0].i_stride[0] = i_stride;
314     m[0].p_fenc[0] = h->mb.pic.p_fenc[0];
315     m[0].weight = w;
316     m[0].i_ref = 0;
317     LOAD_HPELS_LUMA( m[0].p_fref, fref0->lowres );
318     m[0].p_fref_w = m[0].p_fref[0];
319     if( w[0].weightfn )
320         LOAD_WPELS_LUMA( m[0].p_fref_w, fenc->weighted[0] );
321
322     if( b_bidir )
323     {
324         int16_t *mvr = fref1->lowres_mvs[0][p1-p0-1][i_mb_xy];
325         ALIGNED_ARRAY_8( int16_t, dmv,[2],[2] );
326
327         m[1].i_pixel = PIXEL_8x8;
328         m[1].p_cost_mv = a->p_cost_mv;
329         m[1].i_stride[0] = i_stride;
330         m[1].p_fenc[0] = h->mb.pic.p_fenc[0];
331         m[1].i_ref = 0;
332         m[1].weight = weight_none;
333         LOAD_HPELS_LUMA( m[1].p_fref, fref1->lowres );
334         m[1].p_fref_w = m[1].p_fref[0];
335
336         dmv[0][0] = ( mvr[0] * dist_scale_factor + 128 ) >> 8;
337         dmv[0][1] = ( mvr[1] * dist_scale_factor + 128 ) >> 8;
338         dmv[1][0] = dmv[0][0] - mvr[0];
339         dmv[1][1] = dmv[0][1] - mvr[1];
340         CLIP_MV( dmv[0] );
341         CLIP_MV( dmv[1] );
342         if( h->param.analyse.i_subpel_refine <= 1 )
343             M64( dmv ) &= ~0x0001000100010001ULL; /* mv & ~1 */
344
345         TRY_BIDIR( dmv[0], dmv[1], 0 );
346         if( M64( dmv ) )
347         {
348             int i_cost;
349             h->mc.avg[PIXEL_8x8]( pix1, 16, m[0].p_fref[0], m[0].i_stride[0], m[1].p_fref[0], m[1].i_stride[0], i_bipred_weight );
350             i_cost = h->pixf.mbcmp[PIXEL_8x8]( m[0].p_fenc[0], FENC_STRIDE, pix1, 16 );
351             COPY2_IF_LT( i_bcost, i_cost, list_used, 3 );
352         }
353     }
354
355     for( int l = 0; l < 1 + b_bidir; l++ )
356     {
357         if( do_search[l] )
358         {
359             int i_mvc = 0;
360             int16_t (*fenc_mv)[2] = fenc_mvs[l];
361             ALIGNED_4( int16_t mvc[4][2] );
362
363             /* Reverse-order MV prediction. */
364             M32( mvc[0] ) = 0;
365             M32( mvc[2] ) = 0;
366 #define MVC(mv) { CP32( mvc[i_mvc], mv ); i_mvc++; }
367             if( i_mb_x < h->sps->i_mb_width - 1 )
368                 MVC( fenc_mv[1] );
369             if( i_mb_y < h->sps->i_mb_height - 1 )
370             {
371                 MVC( fenc_mv[i_mb_stride] );
372                 if( i_mb_x > 0 )
373                     MVC( fenc_mv[i_mb_stride-1] );
374                 if( i_mb_x < h->sps->i_mb_width - 1 )
375                     MVC( fenc_mv[i_mb_stride+1] );
376             }
377 #undef MVC
378             if( i_mvc <= 1 )
379                 CP32( m[l].mvp, mvc[0] );
380             else
381                 x264_median_mv( m[l].mvp, mvc[0], mvc[1], mvc[2] );
382
383             /* Fast skip for cases of near-zero residual.  Shortcut: don't bother except in the mv0 case,
384              * since anything else is likely to have enough residual to not trigger the skip. */
385             if( !M32( m[l].mvp ) )
386             {
387                 m[l].cost = h->pixf.mbcmp[PIXEL_8x8]( m[l].p_fenc[0], FENC_STRIDE, m[l].p_fref[0], m[l].i_stride[0] );
388                 if( m[l].cost < 64 )
389                 {
390                     M32( m[l].mv ) = 0;
391                     goto skip_motionest;
392                 }
393             }
394
395             x264_me_search( h, &m[l], mvc, i_mvc );
396             m[l].cost -= 2; // remove mvcost from skip mbs
397             if( M32( m[l].mv ) )
398                 m[l].cost += 5;
399
400 skip_motionest:
401             CP32( fenc_mvs[l], m[l].mv );
402             *fenc_costs[l] = m[l].cost;
403         }
404         else
405         {
406             CP32( m[l].mv, fenc_mvs[l] );
407             m[l].cost = *fenc_costs[l];
408         }
409         COPY2_IF_LT( i_bcost, m[l].cost, list_used, l+1 );
410     }
411
412     if( b_bidir && ( M32( m[0].mv ) || M32( m[1].mv ) ) )
413         TRY_BIDIR( m[0].mv, m[1].mv, 5 );
414
415 lowres_intra_mb:
416     if( !fenc->b_intra_calculated )
417     {
418         ALIGNED_ARRAY_16( uint8_t, edge,[33] );
419         uint8_t *pix = &pix1[8+FDEC_STRIDE - 1];
420         uint8_t *src = &fenc->lowres[0][i_pel_offset - 1];
421         const int intra_penalty = 5;
422         int satds[3];
423
424         memcpy( pix-FDEC_STRIDE, src-i_stride, 17 );
425         for( int i = 0; i < 8; i++ )
426             pix[i*FDEC_STRIDE] = src[i*i_stride];
427         pix++;
428
429         if( h->pixf.intra_mbcmp_x3_8x8c )
430             h->pixf.intra_mbcmp_x3_8x8c( h->mb.pic.p_fenc[0], pix, satds );
431         else
432         {
433             for( int i = 0; i < 3; i++ )
434             {
435                 h->predict_8x8c[i]( pix );
436                 satds[i] = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
437             }
438         }
439         int i_icost = X264_MIN3( satds[0], satds[1], satds[2] );
440
441         if( h->param.analyse.i_subpel_refine > 1 )
442         {
443             h->predict_8x8c[I_PRED_CHROMA_P]( pix );
444             int satd = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
445             i_icost = X264_MIN( i_icost, satd );
446             h->predict_8x8_filter( pix, edge, ALL_NEIGHBORS, ALL_NEIGHBORS );
447             for( int i = 3; i < 9; i++ )
448             {
449                 h->predict_8x8[i]( pix, edge );
450                 satd = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
451                 i_icost = X264_MIN( i_icost, satd );
452             }
453         }
454
455         i_icost += intra_penalty;
456         fenc->i_intra_cost[i_mb_xy] = i_icost;
457         if( b_frame_score_mb )
458         {
459             int *row_satd_intra = frames[b]->i_row_satds[0][0];
460             int i_icost_aq = i_icost;
461             if( h->param.rc.i_aq_mode )
462                 i_icost_aq = (i_icost_aq * frames[b]->i_inv_qscale_factor[i_mb_xy] + 128) >> 8;
463             fenc->i_cost_est[0][0] += i_icost;
464             fenc->i_cost_est_aq[0][0] += i_icost_aq;
465             row_satd_intra[h->mb.i_mb_y] += i_icost_aq;
466         }
467     }
468
469     /* forbid intra-mbs in B-frames, because it's rare and not worth checking */
470     /* FIXME: Should we still forbid them now that we cache intra scores? */
471     if( !b_bidir )
472     {
473         int i_icost = fenc->i_intra_cost[i_mb_xy];
474         int b_intra = i_icost < i_bcost;
475         if( b_intra )
476         {
477             i_bcost = i_icost;
478             list_used = 0;
479         }
480         if( b_frame_score_mb )
481             fenc->i_intra_mbs[b-p0] += b_intra;
482     }
483
484     /* In an I-frame, we've already added the results above in the intra section. */
485     if( p0 != p1 )
486     {
487         int i_bcost_aq = i_bcost;
488         if( h->param.rc.i_aq_mode )
489             i_bcost_aq = (i_bcost_aq * frames[b]->i_inv_qscale_factor[i_mb_xy] + 128) >> 8;
490         fenc->i_row_satds[b-p0][p1-b][h->mb.i_mb_y] += i_bcost_aq;
491         if( b_frame_score_mb )
492         {
493             /* Don't use AQ-weighted costs for slicetype decision, only for ratecontrol. */
494             frames[b]->i_cost_est[b-p0][p1-b] += i_bcost;
495             frames[b]->i_cost_est_aq[b-p0][p1-b] += i_bcost_aq;
496         }
497     }
498
499     fenc->lowres_costs[b-p0][p1-b][i_mb_xy] = i_bcost + (list_used << LOWRES_COST_SHIFT);
500 }
501 #undef TRY_BIDIR
502
503 #define NUM_MBS\
504    (h->sps->i_mb_width > 2 && h->sps->i_mb_height > 2 ?\
505    (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2) :\
506     h->sps->i_mb_width * h->sps->i_mb_height)
507
508 static int x264_slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,
509                                       x264_frame_t **frames, int p0, int p1, int b,
510                                       int b_intra_penalty )
511 {
512     int i_score = 0;
513     int do_search[2];
514     const x264_weight_t *w = weight_none;
515     /* Check whether we already evaluated this frame
516      * If we have tried this frame as P, then we have also tried
517      * the preceding frames as B. (is this still true?) */
518     /* Also check that we already calculated the row SATDs for the current frame. */
519     if( frames[b]->i_cost_est[b-p0][p1-b] >= 0 && (!h->param.rc.i_vbv_buffer_size || frames[b]->i_row_satds[b-p0][p1-b][0] != -1) )
520         i_score = frames[b]->i_cost_est[b-p0][p1-b];
521     else
522     {
523         int dist_scale_factor = 128;
524         int *row_satd = frames[b]->i_row_satds[b-p0][p1-b];
525         int *row_satd_intra = frames[b]->i_row_satds[0][0];
526
527         /* For each list, check to see whether we have lowres motion-searched this reference frame before. */
528         do_search[0] = b != p0 && frames[b]->lowres_mvs[0][b-p0-1][0][0] == 0x7FFF;
529         do_search[1] = b != p1 && frames[b]->lowres_mvs[1][p1-b-1][0][0] == 0x7FFF;
530         if( do_search[0] )
531         {
532             if( ( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART ||
533                   h->param.analyse.i_weighted_pred == X264_WEIGHTP_FAKE ) && b == p1 )
534             {
535                 x264_emms();
536                 x264_weights_analyse( h, frames[b], frames[p0], 1 );
537                 w = frames[b]->weight[0];
538             }
539             frames[b]->lowres_mvs[0][b-p0-1][0][0] = 0;
540         }
541         if( do_search[1] ) frames[b]->lowres_mvs[1][p1-b-1][0][0] = 0;
542
543         if( b == p1 )
544             frames[b]->i_intra_mbs[b-p0] = 0;
545         if( !frames[b]->b_intra_calculated )
546         {
547             frames[b]->i_cost_est[0][0] = 0;
548             frames[b]->i_cost_est_aq[0][0] = 0;
549         }
550         if( p1 != p0 )
551             dist_scale_factor = ( ((b-p0) << 8) + ((p1-p0) >> 1) ) / (p1-p0);
552
553         frames[b]->i_cost_est[b-p0][p1-b] = 0;
554         frames[b]->i_cost_est_aq[b-p0][p1-b] = 0;
555
556         /* Lowres lookahead goes backwards because the MVs are used as predictors in the main encode.
557          * This considerably improves MV prediction overall. */
558
559         /* The edge mbs seem to reduce the predictive quality of the
560          * whole frame's score, but are needed for a spatial distribution. */
561         if( h->param.rc.b_mb_tree || h->param.rc.i_vbv_buffer_size ||
562             h->sps->i_mb_width <= 2 || h->sps->i_mb_height <= 2 )
563         {
564             for( h->mb.i_mb_y = h->sps->i_mb_height - 1; h->mb.i_mb_y >= 0; h->mb.i_mb_y-- )
565             {
566                 row_satd[h->mb.i_mb_y] = 0;
567                 if( !frames[b]->b_intra_calculated )
568                     row_satd_intra[h->mb.i_mb_y] = 0;
569                 for( h->mb.i_mb_x = h->sps->i_mb_width - 1; h->mb.i_mb_x >= 0; h->mb.i_mb_x-- )
570                     x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor, do_search, w );
571             }
572         }
573         else
574         {
575             for( h->mb.i_mb_y = h->sps->i_mb_height - 2; h->mb.i_mb_y >= 1; h->mb.i_mb_y-- )
576                 for( h->mb.i_mb_x = h->sps->i_mb_width - 2; h->mb.i_mb_x >= 1; h->mb.i_mb_x-- )
577                     x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor, do_search, w );
578         }
579
580         i_score = frames[b]->i_cost_est[b-p0][p1-b];
581         if( b != p1 )
582             i_score = (uint64_t)i_score * 100 / (120 + h->param.i_bframe_bias);
583         else
584             frames[b]->b_intra_calculated = 1;
585
586         frames[b]->i_cost_est[b-p0][p1-b] = i_score;
587         x264_emms();
588     }
589
590     if( b_intra_penalty )
591     {
592         // arbitrary penalty for I-blocks after B-frames
593         int nmb = NUM_MBS;
594         i_score += i_score * frames[b]->i_intra_mbs[b-p0] / (nmb * 8);
595     }
596     return i_score;
597 }
598
599 /* If MB-tree changes the quantizers, we need to recalculate the frame cost without
600  * re-running lookahead. */
601 static int x264_slicetype_frame_cost_recalculate( x264_t *h, x264_frame_t **frames, int p0, int p1, int b )
602 {
603     int i_score = 0;
604     int *row_satd = frames[b]->i_row_satds[b-p0][p1-b];
605     float *qp_offset = IS_X264_TYPE_B(frames[b]->i_type) ? frames[b]->f_qp_offset_aq : frames[b]->f_qp_offset;
606     x264_emms();
607     for( h->mb.i_mb_y = h->sps->i_mb_height - 1; h->mb.i_mb_y >= 0; h->mb.i_mb_y-- )
608     {
609         row_satd[ h->mb.i_mb_y ] = 0;
610         for( h->mb.i_mb_x = h->sps->i_mb_width - 1; h->mb.i_mb_x >= 0; h->mb.i_mb_x-- )
611         {
612             int i_mb_xy = h->mb.i_mb_x + h->mb.i_mb_y*h->mb.i_mb_stride;
613             int i_mb_cost = frames[b]->lowres_costs[b-p0][p1-b][i_mb_xy] & LOWRES_COST_MASK;
614             float qp_adj = qp_offset[i_mb_xy];
615             i_mb_cost = (i_mb_cost * x264_exp2fix8(qp_adj) + 128) >> 8;
616             row_satd[ h->mb.i_mb_y ] += i_mb_cost;
617             if( (h->mb.i_mb_y > 0 && h->mb.i_mb_y < h->sps->i_mb_height - 1 &&
618                  h->mb.i_mb_x > 0 && h->mb.i_mb_x < h->sps->i_mb_width - 1) ||
619                  h->sps->i_mb_width <= 2 || h->sps->i_mb_height <= 2 )
620             {
621                 i_score += i_mb_cost;
622             }
623         }
624     }
625     return i_score;
626 }
627
628 static void x264_macroblock_tree_finish( x264_t *h, x264_frame_t *frame, int ref0_distance )
629 {
630     x264_emms();
631     float weightdelta = 0.0;
632     if( ref0_distance && frame->f_weighted_cost_delta[ref0_distance-1] > 0 )
633         weightdelta = (1.0 - frame->f_weighted_cost_delta[ref0_distance-1]);
634
635     /* Allow the strength to be adjusted via qcompress, since the two
636      * concepts are very similar. */
637     float strength = 5.0f * (1.0f - h->param.rc.f_qcompress);
638     for( int mb_index = 0; mb_index < h->mb.i_mb_count; mb_index++ )
639     {
640         int intra_cost = (frame->i_intra_cost[mb_index] * frame->i_inv_qscale_factor[mb_index]+128)>>8;
641         if( intra_cost )
642         {
643             int propagate_cost = frame->i_propagate_cost[mb_index];
644             float log2_ratio = x264_log2(intra_cost + propagate_cost) - x264_log2(intra_cost) + weightdelta;
645             frame->f_qp_offset[mb_index] = frame->f_qp_offset_aq[mb_index] - strength * log2_ratio;
646         }
647     }
648 }
649
650 static void x264_macroblock_tree_propagate( x264_t *h, x264_frame_t **frames, int p0, int p1, int b, int referenced )
651 {
652     uint16_t *ref_costs[2] = {frames[p0]->i_propagate_cost,frames[p1]->i_propagate_cost};
653     int dist_scale_factor = ( ((b-p0) << 8) + ((p1-p0) >> 1) ) / (p1-p0);
654     int i_bipred_weight = h->param.analyse.b_weighted_bipred ? 64 - (dist_scale_factor>>2) : 32;
655     int16_t (*mvs[2])[2] = { frames[b]->lowres_mvs[0][b-p0-1], frames[b]->lowres_mvs[1][p1-b-1] };
656     int bipred_weights[2] = {i_bipred_weight, 64 - i_bipred_weight};
657     int *buf = h->scratch_buffer;
658     uint16_t *propagate_cost = frames[b]->i_propagate_cost;
659
660     /* For non-reffed frames the source costs are always zero, so just memset one row and re-use it. */
661     if( !referenced )
662         memset( frames[b]->i_propagate_cost, 0, h->sps->i_mb_width * sizeof(uint16_t) );
663
664     for( h->mb.i_mb_y = 0; h->mb.i_mb_y < h->sps->i_mb_height; h->mb.i_mb_y++ )
665     {
666         int mb_index = h->mb.i_mb_y*h->mb.i_mb_stride;
667         h->mc.mbtree_propagate_cost( buf, propagate_cost,
668             frames[b]->i_intra_cost+mb_index, frames[b]->lowres_costs[b-p0][p1-b]+mb_index,
669             frames[b]->i_inv_qscale_factor+mb_index, h->sps->i_mb_width );
670         if( referenced )
671             propagate_cost += h->sps->i_mb_width;
672         for( h->mb.i_mb_x = 0; h->mb.i_mb_x < h->sps->i_mb_width; h->mb.i_mb_x++, mb_index++ )
673         {
674             int propagate_amount = buf[h->mb.i_mb_x];
675             /* Don't propagate for an intra block. */
676             if( propagate_amount > 0 )
677             {
678                 /* Access width-2 bitfield. */
679                 int lists_used = frames[b]->lowres_costs[b-p0][p1-b][mb_index] >> LOWRES_COST_SHIFT;
680                 /* Follow the MVs to the previous frame(s). */
681                 for( int list = 0; list < 2; list++ )
682                     if( (lists_used >> list)&1 )
683                     {
684 #define CLIP_ADD(s,x) (s) = X264_MIN((s)+(x),(1<<16)-1)
685                         int listamount = propagate_amount;
686                         /* Apply bipred weighting. */
687                         if( lists_used == 3 )
688                             listamount = (listamount * bipred_weights[list] + 32) >> 6;
689
690                         /* Early termination for simple case of mv0. */
691                         if( !M32( mvs[list][mb_index] ) )
692                         {
693                             CLIP_ADD( ref_costs[list][mb_index], listamount );
694                             continue;
695                         }
696
697                         int x = mvs[list][mb_index][0];
698                         int y = mvs[list][mb_index][1];
699                         int mbx = (x>>5)+h->mb.i_mb_x;
700                         int mby = (y>>5)+h->mb.i_mb_y;
701                         int idx0 = mbx + mby * h->mb.i_mb_stride;
702                         int idx1 = idx0 + 1;
703                         int idx2 = idx0 + h->mb.i_mb_stride;
704                         int idx3 = idx0 + h->mb.i_mb_stride + 1;
705                         x &= 31;
706                         y &= 31;
707                         int idx0weight = (32-y)*(32-x);
708                         int idx1weight = (32-y)*x;
709                         int idx2weight = y*(32-x);
710                         int idx3weight = y*x;
711
712                         /* We could just clip the MVs, but pixels that lie outside the frame probably shouldn't
713                          * be counted. */
714                         if( mbx < h->sps->i_mb_width-1 && mby < h->sps->i_mb_height-1 && mbx >= 0 && mby >= 0 )
715                         {
716                             CLIP_ADD( ref_costs[list][idx0], (listamount*idx0weight+512)>>10 );
717                             CLIP_ADD( ref_costs[list][idx1], (listamount*idx1weight+512)>>10 );
718                             CLIP_ADD( ref_costs[list][idx2], (listamount*idx2weight+512)>>10 );
719                             CLIP_ADD( ref_costs[list][idx3], (listamount*idx3weight+512)>>10 );
720                         }
721                         else /* Check offsets individually */
722                         {
723                             if( mbx < h->sps->i_mb_width && mby < h->sps->i_mb_height && mbx >= 0 && mby >= 0 )
724                                 CLIP_ADD( ref_costs[list][idx0], (listamount*idx0weight+512)>>10 );
725                             if( mbx+1 < h->sps->i_mb_width && mby < h->sps->i_mb_height && mbx+1 >= 0 && mby >= 0 )
726                                 CLIP_ADD( ref_costs[list][idx1], (listamount*idx1weight+512)>>10 );
727                             if( mbx < h->sps->i_mb_width && mby+1 < h->sps->i_mb_height && mbx >= 0 && mby+1 >= 0 )
728                                 CLIP_ADD( ref_costs[list][idx2], (listamount*idx2weight+512)>>10 );
729                             if( mbx+1 < h->sps->i_mb_width && mby+1 < h->sps->i_mb_height && mbx+1 >= 0 && mby+1 >= 0 )
730                                 CLIP_ADD( ref_costs[list][idx3], (listamount*idx3weight+512)>>10 );
731                         }
732                     }
733             }
734         }
735     }
736
737     if( h->param.rc.i_vbv_buffer_size && referenced )
738         x264_macroblock_tree_finish( h, frames[b], b == p1 ? b - p0 : 0 );
739 }
740
741 static void x264_macroblock_tree( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int num_frames, int b_intra )
742 {
743     int idx = !b_intra;
744     int last_nonb, cur_nonb = 1;
745     int bframes = 0;
746     int i = num_frames - 1;
747     if( b_intra )
748         x264_slicetype_frame_cost( h, a, frames, 0, 0, 0, 0 );
749
750     while( i > 0 && frames[i]->i_type == X264_TYPE_B )
751         i--;
752     last_nonb = i;
753
754     if( last_nonb < idx )
755         return;
756
757     memset( frames[last_nonb]->i_propagate_cost, 0, h->mb.i_mb_count * sizeof(uint16_t) );
758     while( i-- > idx )
759     {
760         cur_nonb = i;
761         while( frames[cur_nonb]->i_type == X264_TYPE_B && cur_nonb > 0 )
762             cur_nonb--;
763         if( cur_nonb < idx )
764             break;
765         x264_slicetype_frame_cost( h, a, frames, cur_nonb, last_nonb, last_nonb, 0 );
766         memset( frames[cur_nonb]->i_propagate_cost, 0, h->mb.i_mb_count * sizeof(uint16_t) );
767         bframes = last_nonb - cur_nonb - 1;
768         if( h->param.i_bframe_pyramid && bframes > 1 )
769         {
770             int middle = (bframes + 1)/2 + cur_nonb;
771             x264_slicetype_frame_cost( h, a, frames, cur_nonb, last_nonb, middle, 0 );
772             memset( frames[middle]->i_propagate_cost, 0, h->mb.i_mb_count * sizeof(uint16_t) );
773             while( i > cur_nonb )
774             {
775                 int p0 = i > middle ? middle : cur_nonb;
776                 int p1 = i < middle ? middle : last_nonb;
777                 if( i != middle )
778                 {
779                     x264_slicetype_frame_cost( h, a, frames, p0, p1, i, 0 );
780                     x264_macroblock_tree_propagate( h, frames, p0, p1, i, 0 );
781                 }
782                 i--;
783             }
784             x264_macroblock_tree_propagate( h, frames, cur_nonb, last_nonb, middle, 1 );
785         }
786         else
787         {
788             while( i > cur_nonb )
789             {
790                 x264_slicetype_frame_cost( h, a, frames, cur_nonb, last_nonb, i, 0 );
791                 x264_macroblock_tree_propagate( h, frames, cur_nonb, last_nonb, i, 0 );
792                 i--;
793             }
794         }
795         x264_macroblock_tree_propagate( h, frames, cur_nonb, last_nonb, last_nonb, 1 );
796         last_nonb = cur_nonb;
797     }
798
799     x264_macroblock_tree_finish( h, frames[last_nonb], last_nonb );
800     if( h->param.i_bframe_pyramid && bframes > 1 && !h->param.rc.i_vbv_buffer_size )
801         x264_macroblock_tree_finish( h, frames[last_nonb+(bframes+1)/2], 0 );
802 }
803
804 static int x264_vbv_frame_cost( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int p0, int p1, int b )
805 {
806     int cost = x264_slicetype_frame_cost( h, a, frames, p0, p1, b, 0 );
807     if( h->param.rc.i_aq_mode )
808     {
809         if( h->param.rc.b_mb_tree )
810             return x264_slicetype_frame_cost_recalculate( h, frames, p0, p1, b );
811         else
812             return frames[b]->i_cost_est_aq[b-p0][p1-b];
813     }
814     return cost;
815 }
816
817 static void x264_calculate_durations( x264_t *h, x264_frame_t *cur_frame, x264_frame_t *prev_frame, int *i_cpb_delay, int *i_coded_fields )
818 {
819     cur_frame->i_cpb_delay = *i_cpb_delay;
820     cur_frame->i_dpb_output_delay = cur_frame->i_field_cnt - *i_coded_fields;
821
822     // add a correction term for frame reordering
823     cur_frame->i_dpb_output_delay += h->sps->vui.i_num_reorder_frames*2;
824
825     // fix possible negative dpb_output_delay because of pulldown changes and reordering
826     if( cur_frame->i_dpb_output_delay < 0 )
827     {
828         cur_frame->i_cpb_delay += cur_frame->i_dpb_output_delay;
829         cur_frame->i_dpb_output_delay = 0;
830         if( prev_frame )
831             prev_frame->i_cpb_duration += cur_frame->i_dpb_output_delay;
832     }
833
834     if( cur_frame->b_keyframe )
835         *i_cpb_delay = 0;
836
837     *i_cpb_delay += cur_frame->i_duration;
838     *i_coded_fields += cur_frame->i_duration;
839     cur_frame->i_cpb_duration = cur_frame->i_duration;
840 }
841
842 static void x264_vbv_lookahead( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int num_frames, int keyframe )
843 {
844     int last_nonb = 0, cur_nonb = 1, idx = 0;
845     x264_frame_t *prev_frame = NULL;
846     int prev_frame_idx = 0;
847     while( cur_nonb < num_frames && frames[cur_nonb]->i_type == X264_TYPE_B )
848         cur_nonb++;
849     int next_nonb = keyframe ? last_nonb : cur_nonb;
850
851     if( frames[cur_nonb]->i_coded_fields_lookahead >= 0 )
852     {
853         h->i_coded_fields_lookahead = frames[cur_nonb]->i_coded_fields_lookahead;
854         h->i_cpb_delay_lookahead = frames[cur_nonb]->i_cpb_delay_lookahead;
855     }
856
857     while( cur_nonb < num_frames )
858     {
859         /* P/I cost: This shouldn't include the cost of next_nonb */
860         if( next_nonb != cur_nonb )
861         {
862             int p0 = IS_X264_TYPE_I( frames[cur_nonb]->i_type ) ? cur_nonb : last_nonb;
863             frames[next_nonb]->i_planned_satd[idx] = x264_vbv_frame_cost( h, a, frames, p0, cur_nonb, cur_nonb );
864             frames[next_nonb]->i_planned_type[idx] = frames[cur_nonb]->i_type;
865             frames[cur_nonb]->i_coded_fields_lookahead = h->i_coded_fields_lookahead;
866             frames[cur_nonb]->i_cpb_delay_lookahead = h->i_cpb_delay_lookahead;
867             x264_calculate_durations( h, frames[cur_nonb], prev_frame, &h->i_cpb_delay_lookahead, &h->i_coded_fields_lookahead );
868             if( prev_frame )
869             {
870                 frames[next_nonb]->f_planned_cpb_duration[prev_frame_idx] = (double)prev_frame->i_cpb_duration *
871                                                                             h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
872             }
873             frames[next_nonb]->f_planned_cpb_duration[idx] = (double)frames[cur_nonb]->i_cpb_duration *
874                                                              h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
875             prev_frame = frames[cur_nonb];
876             prev_frame_idx = idx;
877             idx++;
878         }
879         /* Handle the B-frames: coded order */
880         for( int i = last_nonb+1; i < cur_nonb; i++, idx++ )
881         {
882             frames[next_nonb]->i_planned_satd[idx] = x264_vbv_frame_cost( h, a, frames, last_nonb, cur_nonb, i );
883             frames[next_nonb]->i_planned_type[idx] = X264_TYPE_B;
884             frames[i]->i_coded_fields_lookahead = h->i_coded_fields_lookahead;
885             frames[i]->i_cpb_delay_lookahead = h->i_cpb_delay_lookahead;
886             x264_calculate_durations( h, frames[i], prev_frame, &h->i_cpb_delay_lookahead, &h->i_coded_fields_lookahead );
887             if( prev_frame )
888             {
889                 frames[next_nonb]->f_planned_cpb_duration[prev_frame_idx] = (double)prev_frame->i_cpb_duration *
890                                                                             h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
891             }
892             frames[next_nonb]->f_planned_cpb_duration[idx] = (double)frames[i]->i_cpb_duration *
893                                                              h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
894             prev_frame = frames[i];
895             prev_frame_idx = idx;
896         }
897         last_nonb = cur_nonb;
898         cur_nonb++;
899         while( cur_nonb <= num_frames && frames[cur_nonb]->i_type == X264_TYPE_B )
900             cur_nonb++;
901     }
902     frames[next_nonb]->i_planned_type[idx] = X264_TYPE_AUTO;
903 }
904
905 static int x264_slicetype_path_cost( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, char *path, int threshold )
906 {
907     int loc = 1;
908     int cost = 0;
909     int cur_p = 0;
910     path--; /* Since the 1st path element is really the second frame */
911     while( path[loc] )
912     {
913         int next_p = loc;
914         /* Find the location of the next P-frame. */
915         while( path[next_p] != 'P' )
916             next_p++;
917
918         /* Add the cost of the P-frame found above */
919         cost += x264_slicetype_frame_cost( h, a, frames, cur_p, next_p, next_p, 0 );
920         /* Early terminate if the cost we have found is larger than the best path cost so far */
921         if( cost > threshold )
922             break;
923
924         if( h->param.i_bframe_pyramid && next_p - cur_p > 2 )
925         {
926             int middle = cur_p + (next_p - cur_p)/2;
927             cost += x264_slicetype_frame_cost( h, a, frames, cur_p, next_p, middle, 0 );
928             for( int next_b = loc; next_b < middle && cost < threshold; next_b++ )
929                 cost += x264_slicetype_frame_cost( h, a, frames, cur_p, middle, next_b, 0 );
930             for( int next_b = middle+1; next_b < next_p && cost < threshold; next_b++ )
931                 cost += x264_slicetype_frame_cost( h, a, frames, middle, next_p, next_b, 0 );
932         }
933         else
934             for( int next_b = loc; next_b < next_p && cost < threshold; next_b++ )
935                 cost += x264_slicetype_frame_cost( h, a, frames, cur_p, next_p, next_b, 0 );
936
937         loc = next_p + 1;
938         cur_p = next_p;
939     }
940     return cost;
941 }
942
943 /* Viterbi/trellis slicetype decision algorithm. */
944 /* Uses strings due to the fact that the speed of the control functions is
945    negligible compared to the cost of running slicetype_frame_cost, and because
946    it makes debugging easier. */
947 static void x264_slicetype_path( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int length, char (*best_paths)[X264_LOOKAHEAD_MAX] )
948 {
949     char paths[2][X264_LOOKAHEAD_MAX];
950     int num_paths = X264_MIN( h->param.i_bframe+1, length );
951     int best_cost = COST_MAX;
952     int idx = 0;
953
954     /* Iterate over all currently possible paths */
955     for( int path = 0; path < num_paths; path++ )
956     {
957         /* Add suffixes to the current path */
958         int len = length - (path + 1);
959         memcpy( paths[idx], best_paths[len % (X264_BFRAME_MAX+1)], len );
960         memset( paths[idx]+len, 'B', path );
961         strcpy( paths[idx]+len+path, "P" );
962
963         /* Calculate the actual cost of the current path */
964         int cost = x264_slicetype_path_cost( h, a, frames, paths[idx], best_cost );
965         if( cost < best_cost )
966         {
967             best_cost = cost;
968             idx ^= 1;
969         }
970     }
971
972     /* Store the best path. */
973     memcpy( best_paths[length % (X264_BFRAME_MAX+1)], paths[idx^1], length );
974 }
975
976 static int scenecut_internal( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int p0, int p1, int print )
977 {
978     x264_frame_t *frame = frames[p1];
979     x264_slicetype_frame_cost( h, a, frames, p0, p1, p1, 0 );
980
981     int icost = frame->i_cost_est[0][0];
982     int pcost = frame->i_cost_est[p1-p0][0];
983     float f_bias;
984     int i_gop_size = frame->i_frame - h->lookahead->i_last_keyframe;
985     float f_thresh_max = h->param.i_scenecut_threshold / 100.0;
986     /* magic numbers pulled out of thin air */
987     float f_thresh_min = f_thresh_max * h->param.i_keyint_min
988                          / ( h->param.i_keyint_max * 4 );
989     int res;
990
991     if( h->param.i_keyint_min == h->param.i_keyint_max )
992         f_thresh_min= f_thresh_max;
993     if( i_gop_size < h->param.i_keyint_min / 4 || h->param.b_intra_refresh )
994         f_bias = f_thresh_min / 4;
995     else if( i_gop_size <= h->param.i_keyint_min )
996         f_bias = f_thresh_min * i_gop_size / h->param.i_keyint_min;
997     else
998     {
999         f_bias = f_thresh_min
1000                  + ( f_thresh_max - f_thresh_min )
1001                     * ( i_gop_size - h->param.i_keyint_min )
1002                    / ( h->param.i_keyint_max - h->param.i_keyint_min ) ;
1003     }
1004
1005     res = pcost >= (1.0 - f_bias) * icost;
1006     if( res && print )
1007     {
1008         int imb = frame->i_intra_mbs[p1-p0];
1009         int pmb = NUM_MBS - imb;
1010         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",
1011                   frame->i_frame,
1012                   icost, pcost, 1. - (double)pcost / icost,
1013                   f_bias, i_gop_size, imb, pmb );
1014     }
1015     return res;
1016 }
1017
1018 static int scenecut( x264_t *h, x264_mb_analysis_t *a, x264_frame_t **frames, int p0, int p1, int real_scenecut, int num_frames )
1019 {
1020     /* Only do analysis during a normal scenecut check. */
1021     if( real_scenecut && h->param.i_bframe )
1022     {
1023         int maxp1 = p0 + 1;
1024         /* Look ahead to avoid coding short flashes as scenecuts. */
1025         if( h->param.i_bframe_adaptive == X264_B_ADAPT_TRELLIS )
1026             /* Don't analyse any more frames than the trellis would have covered. */
1027             maxp1 += h->param.i_bframe;
1028         else
1029             maxp1++;
1030         maxp1 = X264_MIN( maxp1, num_frames );
1031
1032         /* Where A and B are scenes: AAAAAABBBAAAAAA
1033          * If BBB is shorter than (maxp1-p0), it is detected as a flash
1034          * and not considered a scenecut. */
1035         for( int curp1 = p1; curp1 <= maxp1; curp1++ )
1036             if( !scenecut_internal( h, a, frames, p0, curp1, 0 ) )
1037                 /* Any frame in between p0 and cur_p1 cannot be a real scenecut. */
1038                 for( int i = curp1; i > p0; i-- )
1039                     frames[i]->b_scenecut = 0;
1040
1041         /* Where A-F are scenes: AAAAABBCCDDEEFFFFFF
1042          * If each of BB ... EE are shorter than (maxp1-p0), they are
1043          * detected as flashes and not considered scenecuts.
1044          * Instead, the first F frame becomes a scenecut. */
1045         for( int curp0 = p0; curp0 < maxp1; curp0++ )
1046             if( scenecut_internal( h, a, frames, curp0, maxp1, 0 ) )
1047                 /* If cur_p0 is the p0 of a scenecut, it cannot be the p1 of a scenecut. */
1048                     frames[curp0]->b_scenecut = 0;
1049     }
1050
1051     /* Ignore frames that are part of a flash, i.e. cannot be real scenecuts. */
1052     if( !frames[p1]->b_scenecut )
1053         return 0;
1054     return scenecut_internal( h, a, frames, p0, p1, real_scenecut );
1055 }
1056
1057 void x264_slicetype_analyse( x264_t *h, int keyframe )
1058 {
1059     x264_mb_analysis_t a;
1060     x264_frame_t *frames[X264_LOOKAHEAD_MAX+3] = { NULL, };
1061     int num_frames, orig_num_frames, keyint_limit, idr_frame_type, framecnt;
1062     int i_mb_count = NUM_MBS;
1063     int cost1p0, cost2p0, cost1b1, cost2p1;
1064     int i_max_search = X264_MIN( h->lookahead->next.i_size, X264_LOOKAHEAD_MAX );
1065     if( h->param.b_deterministic )
1066         i_max_search = X264_MIN( i_max_search, h->lookahead->i_slicetype_length + !keyframe );
1067
1068     assert( h->frames.b_have_lowres );
1069
1070     if( !h->lookahead->last_nonb )
1071         return;
1072     frames[0] = h->lookahead->last_nonb;
1073     for( framecnt = 0; framecnt < i_max_search && h->lookahead->next.list[framecnt]->i_type == X264_TYPE_AUTO; framecnt++ )
1074         frames[framecnt+1] = h->lookahead->next.list[framecnt];
1075
1076     if( !framecnt )
1077         return;
1078
1079     keyint_limit = h->param.i_keyint_max - frames[0]->i_frame + h->lookahead->i_last_keyframe - 1;
1080     orig_num_frames = num_frames = h->param.b_intra_refresh ? framecnt : X264_MIN( framecnt, keyint_limit );
1081
1082     x264_lowres_context_init( h, &a );
1083     idr_frame_type = frames[1]->i_frame - h->lookahead->i_last_keyframe >= h->param.i_keyint_min ? X264_TYPE_IDR : X264_TYPE_I;
1084
1085     /* This is important psy-wise: if we have a non-scenecut keyframe,
1086      * there will be significant visual artifacts if the frames just before
1087      * go down in quality due to being referenced less, despite it being
1088      * more RD-optimal. */
1089     if( (h->param.analyse.b_psy && h->param.rc.b_mb_tree) || h->param.rc.i_vbv_buffer_size )
1090         num_frames = framecnt;
1091     else if( num_frames == 1 )
1092     {
1093         frames[1]->i_type = X264_TYPE_P;
1094         if( h->param.i_scenecut_threshold && scenecut( h, &a, frames, 0, 1, 1, orig_num_frames ) )
1095             frames[1]->i_type = idr_frame_type;
1096         return;
1097     }
1098     else if( num_frames == 0 )
1099     {
1100         frames[1]->i_type = idr_frame_type;
1101         return;
1102     }
1103
1104     int num_bframes = 0;
1105     int num_analysed_frames = num_frames;
1106     int reset_start;
1107     if( h->param.i_scenecut_threshold && scenecut( h, &a, frames, 0, 1, 1, orig_num_frames ) )
1108     {
1109         frames[1]->i_type = idr_frame_type;
1110         return;
1111     }
1112
1113     if( h->param.i_bframe )
1114     {
1115         if( h->param.i_bframe_adaptive == X264_B_ADAPT_TRELLIS )
1116         {
1117             if( num_frames > 1 )
1118             {
1119                 char best_paths[X264_BFRAME_MAX+1][X264_LOOKAHEAD_MAX] = {"","P"};
1120                 int best_path_index = (num_frames-1) % (X264_BFRAME_MAX+1);
1121
1122                 /* Perform the frametype analysis. */
1123                 for( int j = 2; j < num_frames; j++ )
1124                     x264_slicetype_path( h, &a, frames, j, best_paths );
1125
1126                 num_bframes = strspn( best_paths[best_path_index], "B" );
1127                 /* Load the results of the analysis into the frame types. */
1128                 for( int j = 1; j < num_frames; j++ )
1129                     frames[j]->i_type = best_paths[best_path_index][j-1] == 'B' ? X264_TYPE_B : X264_TYPE_P;
1130             }
1131             frames[num_frames]->i_type = X264_TYPE_P;
1132         }
1133         else if( h->param.i_bframe_adaptive == X264_B_ADAPT_FAST )
1134         {
1135             for( int i = 0; i <= num_frames-2; )
1136             {
1137                 cost2p1 = x264_slicetype_frame_cost( h, &a, frames, i+0, i+2, i+2, 1 );
1138                 if( frames[i+2]->i_intra_mbs[2] > i_mb_count / 2 )
1139                 {
1140                     frames[i+1]->i_type = X264_TYPE_P;
1141                     frames[i+2]->i_type = X264_TYPE_P;
1142                     i += 2;
1143                     continue;
1144                 }
1145
1146                 cost1b1 = x264_slicetype_frame_cost( h, &a, frames, i+0, i+2, i+1, 0 );
1147                 cost1p0 = x264_slicetype_frame_cost( h, &a, frames, i+0, i+1, i+1, 0 );
1148                 cost2p0 = x264_slicetype_frame_cost( h, &a, frames, i+1, i+2, i+2, 0 );
1149
1150                 if( cost1p0 + cost2p0 < cost1b1 + cost2p1 )
1151                 {
1152                     frames[i+1]->i_type = X264_TYPE_P;
1153                     i += 1;
1154                     continue;
1155                 }
1156
1157                 // arbitrary and untuned
1158                 #define INTER_THRESH 300
1159                 #define P_SENS_BIAS (50 - h->param.i_bframe_bias)
1160                 frames[i+1]->i_type = X264_TYPE_B;
1161
1162                 int j;
1163                 for( j = i+2; j <= X264_MIN( i+h->param.i_bframe, num_frames-1 ); j++ )
1164                 {
1165                     int pthresh = X264_MAX(INTER_THRESH - P_SENS_BIAS * (j-i-1), INTER_THRESH/10);
1166                     int pcost = x264_slicetype_frame_cost( h, &a, frames, i+0, j+1, j+1, 1 );
1167                     if( pcost > pthresh*i_mb_count || frames[j+1]->i_intra_mbs[j-i+1] > i_mb_count/3 )
1168                         break;
1169                     frames[j]->i_type = X264_TYPE_B;
1170                 }
1171                 frames[j]->i_type = X264_TYPE_P;
1172                 i = j;
1173             }
1174             frames[num_frames]->i_type = X264_TYPE_P;
1175             num_bframes = 0;
1176             while( num_bframes < num_frames && frames[num_bframes+1]->i_type == X264_TYPE_B )
1177                 num_bframes++;
1178         }
1179         else
1180         {
1181             num_bframes = X264_MIN(num_frames-1, h->param.i_bframe);
1182             for( int j = 1; j < num_frames; j++ )
1183                 frames[j]->i_type = (j%(num_bframes+1)) ? X264_TYPE_B : X264_TYPE_P;
1184             frames[num_frames]->i_type = X264_TYPE_P;
1185         }
1186
1187         /* Check scenecut on the first minigop. */
1188         for( int j = 1; j < num_bframes+1; j++ )
1189             if( h->param.i_scenecut_threshold && scenecut( h, &a, frames, j, j+1, 0, orig_num_frames ) )
1190             {
1191                 frames[j]->i_type = X264_TYPE_P;
1192                 num_analysed_frames = j;
1193                 break;
1194             }
1195
1196         reset_start = keyframe ? 1 : X264_MIN( num_bframes+2, num_analysed_frames+1 );
1197     }
1198     else
1199     {
1200         for( int j = 1; j <= num_frames; j++ )
1201             frames[j]->i_type = X264_TYPE_P;
1202         reset_start = !keyframe + 1;
1203         num_bframes = 0;
1204     }
1205
1206     /* Perform the actual macroblock tree analysis.
1207      * Don't go farther than the maximum keyframe interval; this helps in short GOPs. */
1208     if( h->param.rc.b_mb_tree )
1209         x264_macroblock_tree( h, &a, frames, X264_MIN(num_frames, h->param.i_keyint_max), keyframe );
1210
1211     /* Enforce keyframe limit. */
1212     if( !h->param.b_intra_refresh )
1213         for( int j = 0; j < num_frames; j++ )
1214         {
1215             if( ((j-keyint_limit) % h->param.i_keyint_max) == 0 )
1216             {
1217                 if( j && h->param.i_keyint_max > 1 )
1218                     frames[j]->i_type = X264_TYPE_P;
1219                 frames[j+1]->i_type = X264_TYPE_IDR;
1220                 reset_start = X264_MIN( reset_start, j+2 );
1221             }
1222         }
1223
1224     if( h->param.rc.i_vbv_buffer_size )
1225         x264_vbv_lookahead( h, &a, frames, num_frames, keyframe );
1226
1227     /* Restore frametypes for all frames that haven't actually been decided yet. */
1228     for( int j = reset_start; j <= num_frames; j++ )
1229         frames[j]->i_type = X264_TYPE_AUTO;
1230 }
1231
1232 void x264_slicetype_decide( x264_t *h )
1233 {
1234     x264_frame_t *frames[X264_BFRAME_MAX+2];
1235     x264_frame_t *frm;
1236     int bframes;
1237     int brefs;
1238
1239     if( !h->lookahead->next.i_size )
1240         return;
1241
1242     int lookahead_size = h->lookahead->next.i_size;
1243
1244     if( h->param.rc.i_rc_method == X264_RC_ABR || h->param.rc.b_stat_write || h->param.rc.i_vbv_buffer_size )
1245     {
1246         for( int i = 0; i < h->lookahead->next.i_size; i++ )
1247         {
1248             if( h->param.b_vfr_input )
1249             {
1250                 if( lookahead_size-- > 1 )
1251                     h->lookahead->next.list[i]->i_duration = 2 * (h->lookahead->next.list[i+1]->i_pts - h->lookahead->next.list[i]->i_pts);
1252                 else
1253                     h->lookahead->next.list[i]->i_duration = h->i_prev_duration;
1254             }
1255             else
1256                 h->lookahead->next.list[i]->i_duration = delta_tfi_divisor[h->lookahead->next.list[i]->i_pic_struct];
1257             h->i_prev_duration = h->lookahead->next.list[i]->i_duration;
1258
1259             if( h->lookahead->next.list[i]->i_frame > h->i_disp_fields_last_frame && lookahead_size > 0 )
1260             {
1261                 h->lookahead->next.list[i]->i_field_cnt = h->i_disp_fields;
1262                 h->i_disp_fields += h->lookahead->next.list[i]->i_duration;
1263                 h->i_disp_fields_last_frame = h->lookahead->next.list[i]->i_frame;
1264             }
1265             else if( lookahead_size == 0 )
1266             {
1267                 h->lookahead->next.list[i]->i_field_cnt = h->i_disp_fields;
1268                 h->lookahead->next.list[i]->i_duration = h->i_prev_duration;
1269             }
1270         }
1271     }
1272
1273     if( h->param.rc.b_stat_read )
1274     {
1275         /* Use the frame types from the first pass */
1276         for( int i = 0; i < h->lookahead->next.i_size; i++ )
1277             h->lookahead->next.list[i]->i_type =
1278                 x264_ratecontrol_slice_type( h, h->lookahead->next.list[i]->i_frame );
1279     }
1280     else if( (h->param.i_bframe && h->param.i_bframe_adaptive)
1281              || h->param.i_scenecut_threshold
1282              || h->param.rc.b_mb_tree
1283              || (h->param.rc.i_vbv_buffer_size && h->param.rc.i_lookahead) )
1284         x264_slicetype_analyse( h, 0 );
1285
1286     for( bframes = 0, brefs = 0;; bframes++ )
1287     {
1288         frm = h->lookahead->next.list[bframes];
1289         if( frm->i_type == X264_TYPE_BREF && h->param.i_bframe_pyramid < X264_B_PYRAMID_NORMAL &&
1290             brefs == h->param.i_bframe_pyramid )
1291         {
1292             frm->i_type = X264_TYPE_B;
1293             x264_log( h, X264_LOG_WARNING, "B-ref at frame %d incompatible with B-pyramid %s \n",
1294                       frm->i_frame, x264_b_pyramid_names[h->param.i_bframe_pyramid] );
1295         }
1296         /* pyramid with multiple B-refs needs a big enough dpb that the preceding P-frame stays available.
1297            smaller dpb could be supported by smart enough use of mmco, but it's easier just to forbid it. */
1298         else if( frm->i_type == X264_TYPE_BREF && h->param.i_bframe_pyramid == X264_B_PYRAMID_NORMAL &&
1299             brefs && h->param.i_frame_reference <= (brefs+3) )
1300         {
1301             frm->i_type = X264_TYPE_B;
1302             x264_log( h, X264_LOG_WARNING, "B-ref at frame %d incompatible with B-pyramid %s and %d reference frames\n",
1303                       frm->i_frame, x264_b_pyramid_names[h->param.i_bframe_pyramid], h->param.i_frame_reference );
1304         }
1305
1306         /* Limit GOP size */
1307         if( (!h->param.b_intra_refresh || frm->i_frame == 0) && frm->i_frame - h->lookahead->i_last_keyframe >= h->param.i_keyint_max )
1308         {
1309             if( frm->i_type == X264_TYPE_AUTO )
1310                 frm->i_type = X264_TYPE_IDR;
1311             if( frm->i_type != X264_TYPE_IDR )
1312                 x264_log( h, X264_LOG_WARNING, "specified frame type (%d) is not compatible with keyframe interval\n", frm->i_type );
1313         }
1314         if( frm->i_type == X264_TYPE_IDR )
1315         {
1316             /* Close GOP */
1317             h->lookahead->i_last_keyframe = frm->i_frame;
1318             frm->b_keyframe = 1;
1319             if( bframes > 0 )
1320             {
1321                 bframes--;
1322                 h->lookahead->next.list[bframes]->i_type = X264_TYPE_P;
1323             }
1324         }
1325
1326         if( bframes == h->param.i_bframe ||
1327             !h->lookahead->next.list[bframes+1] )
1328         {
1329             if( IS_X264_TYPE_B( frm->i_type ) )
1330                 x264_log( h, X264_LOG_WARNING, "specified frame type is not compatible with max B-frames\n" );
1331             if( frm->i_type == X264_TYPE_AUTO
1332                 || IS_X264_TYPE_B( frm->i_type ) )
1333                 frm->i_type = X264_TYPE_P;
1334         }
1335
1336         if( frm->i_type == X264_TYPE_BREF )
1337             brefs++;
1338
1339         if( frm->i_type == X264_TYPE_AUTO )
1340             frm->i_type = X264_TYPE_B;
1341
1342         else if( !IS_X264_TYPE_B( frm->i_type ) ) break;
1343     }
1344
1345     if( bframes )
1346         h->lookahead->next.list[bframes-1]->b_last_minigop_bframe = 1;
1347     h->lookahead->next.list[bframes]->i_bframes = bframes;
1348
1349     /* insert a bref into the sequence */
1350     if( h->param.i_bframe_pyramid && bframes > 1 && !brefs )
1351     {
1352         h->lookahead->next.list[bframes/2]->i_type = X264_TYPE_BREF;
1353         brefs++;
1354     }
1355
1356     /* calculate the frame costs ahead of time for x264_rc_analyse_slice while we still have lowres */
1357     if( h->param.rc.i_rc_method != X264_RC_CQP )
1358     {
1359         x264_mb_analysis_t a;
1360         int p0, p1, b;
1361         p1 = b = bframes + 1;
1362
1363         x264_lowres_context_init( h, &a );
1364
1365         frames[0] = h->lookahead->last_nonb;
1366         memcpy( &frames[1], h->lookahead->next.list, (bframes+1) * sizeof(x264_frame_t*) );
1367         if( IS_X264_TYPE_I( h->lookahead->next.list[bframes]->i_type ) )
1368             p0 = bframes + 1;
1369         else // P
1370             p0 = 0;
1371
1372         x264_slicetype_frame_cost( h, &a, frames, p0, p1, b, 0 );
1373
1374         if( (p0 != p1 || bframes) && h->param.rc.i_vbv_buffer_size )
1375         {
1376             /* We need the intra costs for row SATDs. */
1377             x264_slicetype_frame_cost( h, &a, frames, b, b, b, 0 );
1378
1379             /* We need B-frame costs for row SATDs. */
1380             p0 = 0;
1381             for( b = 1; b <= bframes; b++ )
1382             {
1383                 if( frames[b]->i_type == X264_TYPE_B )
1384                     for( p1 = b; frames[p1]->i_type == X264_TYPE_B; )
1385                         p1++;
1386                 else
1387                     p1 = bframes + 1;
1388                 x264_slicetype_frame_cost( h, &a, frames, p0, p1, b, 0 );
1389                 if( frames[b]->i_type == X264_TYPE_BREF )
1390                     p0 = b;
1391             }
1392         }
1393     }
1394
1395     /* Analyse for weighted P frames */
1396     if( !h->param.rc.b_stat_read && h->lookahead->next.list[bframes]->i_type == X264_TYPE_P
1397         && h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
1398     {
1399         x264_emms();
1400         x264_weights_analyse( h, h->lookahead->next.list[bframes], h->lookahead->last_nonb, 0 );
1401     }
1402
1403     /* shift sequence to coded order.
1404        use a small temporary list to avoid shifting the entire next buffer around */
1405     int i_coded = h->lookahead->next.list[0]->i_frame;
1406     if( bframes )
1407     {
1408         int index[] = { brefs+1, 1 };
1409         for( int i = 0; i < bframes; i++ )
1410         {
1411             int idx = index[h->lookahead->next.list[i]->i_type == X264_TYPE_BREF]++;
1412             frames[idx] = h->lookahead->next.list[i];
1413             frames[idx]->i_reordered_pts = h->lookahead->next.list[idx]->i_pts;
1414         }
1415         frames[0] = h->lookahead->next.list[bframes];
1416         frames[0]->i_reordered_pts = h->lookahead->next.list[0]->i_pts;
1417         memcpy( h->lookahead->next.list, frames, (bframes+1) * sizeof(x264_frame_t*) );
1418     }
1419
1420     for( int i = 0; i <= bframes; i++ )
1421     {
1422         h->lookahead->next.list[i]->i_coded = i_coded++;
1423         if( h->param.rc.i_rc_method == X264_RC_ABR || h->param.rc.b_stat_write || h->param.rc.i_vbv_buffer_size )
1424         {
1425             if( i )
1426             {
1427                 x264_calculate_durations( h, h->lookahead->next.list[i], h->lookahead->next.list[i-1], &h->i_cpb_delay, &h->i_coded_fields );
1428                 h->lookahead->next.list[0]->f_planned_cpb_duration[i-1] = (double)h->lookahead->next.list[i-1]->i_cpb_duration *
1429                                                                           h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
1430             }
1431             else
1432                 x264_calculate_durations( h, h->lookahead->next.list[i], NULL, &h->i_cpb_delay, &h->i_coded_fields );
1433
1434             h->lookahead->next.list[0]->f_planned_cpb_duration[i] = (double)h->lookahead->next.list[i]->i_cpb_duration *
1435                                                                     h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
1436         }
1437     }
1438 }
1439
1440 int x264_rc_analyse_slice( x264_t *h )
1441 {
1442     int p0 = 0, p1, b;
1443     int cost;
1444     x264_emms();
1445
1446     if( IS_X264_TYPE_I(h->fenc->i_type) )
1447         p1 = b = 0;
1448     else if( h->fenc->i_type == X264_TYPE_P )
1449         p1 = b = h->fenc->i_bframes + 1;
1450     else //B
1451     {
1452         p1 = (h->fref1[0]->i_poc - h->fref0[0]->i_poc)/2;
1453         b  = (h->fenc->i_poc - h->fref0[0]->i_poc)/2;
1454     }
1455     /* We don't need to assign p0/p1 since we are not performing any real analysis here. */
1456     x264_frame_t **frames = &h->fenc - b;
1457
1458     /* cost should have been already calculated by x264_slicetype_decide */
1459     cost = frames[b]->i_cost_est[b-p0][p1-b];
1460     assert( cost >= 0 );
1461
1462     if( h->param.rc.b_mb_tree && !h->param.rc.b_stat_read )
1463     {
1464         cost = x264_slicetype_frame_cost_recalculate( h, frames, p0, p1, b );
1465         if( b && h->param.rc.i_vbv_buffer_size )
1466             x264_slicetype_frame_cost_recalculate( h, frames, b, b, b );
1467     }
1468     /* In AQ, use the weighted score instead. */
1469     else if( h->param.rc.i_aq_mode )
1470         cost = frames[b]->i_cost_est_aq[b-p0][p1-b];
1471
1472     h->fenc->i_row_satd = h->fenc->i_row_satds[b-p0][p1-b];
1473     h->fdec->i_row_satd = h->fdec->i_row_satds[b-p0][p1-b];
1474     h->fdec->i_satd = cost;
1475     memcpy( h->fdec->i_row_satd, h->fenc->i_row_satd, h->sps->i_mb_height * sizeof(int) );
1476     if( !IS_X264_TYPE_I(h->fenc->i_type) )
1477         memcpy( h->fdec->i_row_satds[0][0], h->fenc->i_row_satds[0][0], h->sps->i_mb_height * sizeof(int) );
1478
1479     if( h->param.b_intra_refresh && h->param.rc.i_vbv_buffer_size && h->fenc->i_type == X264_TYPE_P )
1480     {
1481         int ip_factor = 256 * h->param.rc.f_ip_factor; /* fix8 */
1482         for( int y = 0; y < h->sps->i_mb_height; y++ )
1483         {
1484             int mb_xy = y * h->mb.i_mb_stride;
1485             for( int x = h->fdec->i_pir_start_col; x <= h->fdec->i_pir_end_col; x++, mb_xy++ )
1486             {
1487                 int intra_cost = (h->fenc->i_intra_cost[mb_xy] * ip_factor + 128) >> 8;
1488                 int inter_cost = h->fenc->lowres_costs[b-p0][p1-b][mb_xy] & LOWRES_COST_MASK;
1489                 int diff = intra_cost - inter_cost;
1490                 if( h->param.rc.i_aq_mode )
1491                     h->fdec->i_row_satd[y] += (diff * frames[b]->i_inv_qscale_factor[mb_xy] + 128) >> 8;
1492                 else
1493                     h->fdec->i_row_satd[y] += diff;
1494                 cost += diff;
1495             }
1496         }
1497     }
1498
1499     return cost;
1500 }