Browse Source

propresenc: fix missed LE pixfmt occurance

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
3c32a941b7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/proresenc.c

+ 1
- 1
libavcodec/proresenc.c View File

@@ -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;
}


Loading…
Cancel
Save