Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
[email protected] webmail now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!

Paste

Pasted as C by saste ( 11 years ago )
static int is_planar_yuv(const AVPixFmtDescriptor *desc)
{
    int i, has_plane[4] = { 0 };

    if (desc->flags & PIX_FMT_RGB)
        return 0;

    for (i = 0; i < desc->nb_components; i++)
        has_plane[desc->comp[i].plane] = 1;

    return has_plane[0] + has_plane[1] + has_plane[2] + has_plane[3] >= 3;
}

 

Revise this Paste

Parent: 59125
Your Name: Code Language: