Exemple #1
0
static int x264_coeff_last64( int16_t *l )
{
    return x264_coeff_last_internal( l, 64 );
}
Exemple #2
0
static int x264_coeff_last64( dctcoef *l )
{
    return x264_coeff_last_internal( l, 64 );
}
Exemple #3
0
static int x264_coeff_last16( int16_t *l )
{
    return x264_coeff_last_internal( l, 16 );
}
Exemple #4
0
static int x264_coeff_last16( dctcoef *l )
{
    return x264_coeff_last_internal( l, 16 );
}