diff options
author | Martin Storsjö <martin@martin.st> | 2013-02-28 18:05:50 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-02-28 18:29:03 +0200 |
commit | 86611ff123d6ff2504931efa041bff24e5619daf (patch) | |
tree | 07cb04f0c34456a87d5a367c85605b6dedc5694b /libavcodec/pnm.c | |
parent | 5c8696555abd30a200d0d882e2913f66619fba68 (diff) | |
download | ffmpeg-86611ff123d6ff2504931efa041bff24e5619daf.tar.gz |
pnm: Use av_pix_fmt_desc_get instead of accessing the array directly
This fixes boken fate tests with MSVC with DLLs, broken since
b5f536d24.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r-- | libavcodec/pnm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c index 094e03d8fa..5f2fa4966c 100644 --- a/libavcodec/pnm.c +++ b/libavcodec/pnm.c @@ -173,7 +173,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); |