summaryrefslogtreecommitdiff
path: root/libavcodec/aura.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/aura.c')
-rw-r--r--libavcodec/aura.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aura.c b/libavcodec/aura.c
index 68e0c7a8a9..9f910212fb 100644
--- a/libavcodec/aura.c
+++ b/libavcodec/aura.c
@@ -39,7 +39,7 @@ static av_cold int aura_decode_init(AVCodecContext *avctx)
/* width needs to be divisible by 4 for this codec to work */
if (avctx->width & 0x3)
return -1;
- avctx->pix_fmt = PIX_FMT_YUV422P;
+ avctx->pix_fmt = AV_PIX_FMT_YUV422P;
return 0;
}