swscale: check flags instead of nb_components to find if pixel format have alpha

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/9/head
Paul B Mahol 12 years ago
parent 7003d650b0
commit d07b0d9927
  1. 2
      libswscale/swscale_internal.h

@ -688,7 +688,7 @@ static av_always_inline int isALPHA(enum AVPixelFormat pix_fmt)
{
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
av_assert0(desc);
return desc->nb_components == 2 || desc->nb_components == 4;
return desc->flags & PIX_FMT_ALPHA;
}
#if 1

Loading…
Cancel
Save