From 6aa2d1f12073c65a30a0b3a8c6d7191165ca0286 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 17 Mar 2014 18:19:28 +0100 Subject: img_format: AV_PIX_FMT_FLAG_ALPHA is always available We no more support ancient libavutil versions. --- video/img_format.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'video') diff --git a/video/img_format.c b/video/img_format.c index 1d0b7c4a72..e1636e1eb6 100644 --- a/video/img_format.c +++ b/video/img_format.c @@ -211,13 +211,8 @@ struct mp_imgfmt_desc mp_imgfmt_get_desc(int mpfmt) desc.flags |= MP_IMGFLAG_RGB; } -#ifdef AV_PIX_FMT_FLAG_ALPHA if (pd->flags & AV_PIX_FMT_FLAG_ALPHA) desc.flags |= MP_IMGFLAG_ALPHA; -#else - if (desc.num_planes > 3) - desc.flags |= MP_IMGFLAG_ALPHA; -#endif if (mpfmt >= IMGFMT_RGB0_START && mpfmt <= IMGFMT_RGB0_END) desc.flags &= ~MP_IMGFLAG_ALPHA; -- cgit v1.2.3