summaryrefslogtreecommitdiff
path: root/libavcodec/proresenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-30 04:07:44 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-10-30 04:17:01 +0100
commit3c32a941b76a88f385c794823ee2c45e82ea1737 (patch)
tree49460667209ce116483bc43830a35220c3223d70 /libavcodec/proresenc.c
parent64a41dc21f3d2df4ccf794b7104c3b3deb09a627 (diff)
propresenc: fix missed LE pixfmt occurance
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresenc.c')
-rw-r--r--libavcodec/proresenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c
index 57c6aa2fe4..1d10304655 100644
--- a/libavcodec/proresenc.c
+++ b/libavcodec/proresenc.c
@@ -533,7 +533,7 @@ static av_cold int prores_encode_init(AVCodecContext *avctx)
int i;
ProresContext* ctx = avctx->priv_data;
- if (avctx->pix_fmt != PIX_FMT_YUV422P10LE) {
+ if (avctx->pix_fmt != PIX_FMT_YUV422P10) {
av_log(avctx, AV_LOG_ERROR, "need YUV422P10\n");
return -1;
}