[FFmpeg-cvslog] proresenc: the encoder expects native endian input.

Michael Niedermayer git at videolan.org
Sun Oct 30 03:06:44 CET 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct 30 02:55:01 2011 +0100| [64a41dc21f3d2df4ccf794b7104c3b3deb09a627] | committer: Michael Niedermayer

proresenc: the encoder expects native endian input.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64a41dc21f3d2df4ccf794b7104c3b3deb09a627
---

 libavcodec/proresenc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c
index e34945f..57c6aa2 100644
--- a/libavcodec/proresenc.c
+++ b/libavcodec/proresenc.c
@@ -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



More information about the ffmpeg-cvslog mailing list