summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-24 14:27:08 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-24 14:27:39 +0100
commit5ecf8189c682f41ab315e171e0e7721d7e272138 (patch)
tree433c9660304b09d20e7d4cf2b511fb143d375699 /libavcodec/pnm.c
parent198ea7a96f64b60d26068ac30605d5b50245abeb (diff)
downloadffmpeg-5ecf8189c682f41ab315e171e0e7721d7e272138.tar.gz
pnm: use av_pix_fmt_desc_get()
Using the table directly may cause problems on some platforms like msvc Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r--libavcodec/pnm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index fe120c7971..6d1eb6d0ed 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -181,7 +181,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
}else
s->maxval=1;
/* more check if YUV420 */
- if (av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PLANAR) {
+ if (av_pix_fmt_desc_get(avctx->pix_fmt)->flags & PIX_FMT_PLANAR) {
if ((avctx->width & 1) != 0)
return AVERROR_INVALIDDATA;
h = (avctx->height * 2);