Example #1
0
static int x264_decimate_score64( int16_t *dct )
{
    return x264_decimate_score_internal( dct, 64 );
}
Example #2
0
static int x264_decimate_score16( int16_t *dct )
{
    return x264_decimate_score_internal( dct, 16 );
}
Example #3
0
File: quant.c Project: DANHUK/x264
static int x264_decimate_score64( dctcoef *dct )
{
    return x264_decimate_score_internal( dct, 64 );
}
Example #4
0
static int x264_decimate_score15( int16_t *dct )
{
    return x264_decimate_score_internal( dct+1, 15 );
}
Example #5
0
File: quant.c Project: DANHUK/x264
static int x264_decimate_score16( dctcoef *dct )
{
    return x264_decimate_score_internal( dct, 16 );
}