Browse Source

proresenc: the encoder expects native endian input.

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

+ 1
- 1
libavcodec/proresenc.c View File

@@ -597,7 +597,7 @@ AVCodec ff_prores_encoder = {
.init = prores_encode_init,
.close = prores_encode_close,
.encode = prores_encode_frame,
.pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV422P10LE, PIX_FMT_NONE},
.pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV422P10, PIX_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("Apple ProRes"),
.capabilities = 0,
.profiles = profiles


Loading…
Cancel
Save