[FFmpeg-cvslog] propresenc: fix missed LE pixfmt occurance
Michael Niedermayer
git at videolan.org
Sun Oct 30 04:19:32 CET 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct 30 04:07:44 2011 +0100| [3c32a941b76a88f385c794823ee2c45e82ea1737] | committer: Michael Niedermayer
propresenc: fix missed LE pixfmt occurance
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3c32a941b76a88f385c794823ee2c45e82ea1737
---
libavcodec/proresenc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c
index 57c6aa2..1d10304 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;
}
More information about the ffmpeg-cvslog
mailing list