~siretart/x264/trunk

« back to all changes in this revision

Viewing changes to encoder/analyse.c

  • Committer: Loren Merritt
  • Date: 2006-01-10 07:31:29 UTC
  • Revision ID: git-v1:0abf15d29e904339fb9f606e83e01c9265e54b15
dct-domain noise reduction (ported from lavc)



git-svn-id: svn://svn.videolan.org/x264/trunk@398 df754926-b1dd-0310-bc7b-ec298dee348c

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
                        && h->mb.i_subpel_refine >= 5;
199
199
    h->mb.b_trellis = h->param.analyse.i_trellis > 1;
200
200
    h->mb.b_transform_8x8 = 0;
 
201
    h->mb.b_noise_reduction = 0;
201
202
 
202
203
    /* I: Intra part */
203
204
    a->i_sad_i16x16 =
2271
2272
        x264_mb_analyse_transform( h );
2272
2273
 
2273
2274
    h->mb.b_trellis = h->param.analyse.i_trellis;
 
2275
    h->mb.b_noise_reduction = h->param.analyse.i_noise_reduction;
2274
2276
}
2275
2277
 
2276
2278
/*-------------------- Update MB from the analysis ----------------------*/