From e6c4ac7b5f038be56dfbb0171f5dd0cb850d9b28 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 12 May 2013 15:41:49 +0200 Subject: pixdesc: rename PIX_FMT_* flags to AV_PIX_FMT_FLAG_* --- libavcodec/tiffenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/tiffenc.c') diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c index 8162c407d6..fc777ebae7 100644 --- a/libavcodec/tiffenc.c +++ b/libavcodec/tiffenc.c @@ -242,9 +242,9 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, case AV_PIX_FMT_PAL8: pfd = av_pix_fmt_desc_get(avctx->pix_fmt); s->bpp = av_get_bits_per_pixel(pfd); - if (pfd->flags & PIX_FMT_PAL) { + if (pfd->flags & AV_PIX_FMT_FLAG_PAL) { s->photometric_interpretation = 3; - } else if (pfd->flags & PIX_FMT_RGB) { + } else if (pfd->flags & AV_PIX_FMT_FLAG_RGB) { s->photometric_interpretation = 2; } else { s->photometric_interpretation = 1; -- cgit v1.2.3