git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
swscale: check flags instead of nb_components to find if pixel format have alpha
[ffmpeg.git]
/
libswscale
/
swscale_internal.h
diff --git
a/libswscale/swscale_internal.h
b/libswscale/swscale_internal.h
index
d1f9539
..
4f4b953
100644
(file)
--- a/
libswscale/swscale_internal.h
+++ b/
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