Re: [FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-17 Thread Christophe Gisquet
Le 13 août 2014 12:22, Christophe Gisquet christophe.gisq...@gmail.com a écrit : Fixes DLAD_8b_3c_big.dpx from ticket #3692 --- libavcodec/dpx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 2ad7527..d4d6833 100644 --- a/libavcodec/dpx.c

Re: [FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-16 Thread Christophe Gisquet
Hi, 2014-08-14 11:48 GMT+02:00 Christophe Gisquet christophe.gisq...@gmail.com: Hi, 2014-08-14 5:01 GMT+02:00 Michael Niedermayer michae...@gmx.at: On Wed, Aug 13, 2014 at 10:21:54AM +, Christophe Gisquet wrote: case 50081: +avctx-pix_fmt = AV_PIX_FMT_BGR24; +

Re: [FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-16 Thread Michael Niedermayer
On Sat, Aug 16, 2014 at 11:39:44AM +0200, Christophe Gisquet wrote: Hi, 2014-08-14 11:48 GMT+02:00 Christophe Gisquet christophe.gisq...@gmail.com: Hi, 2014-08-14 5:01 GMT+02:00 Michael Niedermayer michae...@gmx.at: On Wed, Aug 13, 2014 at 10:21:54AM +, Christophe Gisquet wrote:

Re: [FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-14 Thread Christophe Gisquet
Hi, 2014-08-14 5:01 GMT+02:00 Michael Niedermayer michae...@gmx.at: On Wed, Aug 13, 2014 at 10:21:54AM +, Christophe Gisquet wrote: case 50081: +avctx-pix_fmt = AV_PIX_FMT_BGR24; +break; this possibly breaks decoding of

[FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-13 Thread Christophe Gisquet
Fixes DLAD_8b_3c_big.dpx from ticket #3692 --- libavcodec/dpx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 2ad7527..d4d6833 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -232,6 +232,8 @@ static int decode_frame(AVCodecContext *avctx,

Re: [FFmpeg-devel] [PATCH 4/4] dpx: fix endianess for RGB 8bits

2014-08-13 Thread Michael Niedermayer
On Wed, Aug 13, 2014 at 10:21:54AM +, Christophe Gisquet wrote: Fixes DLAD_8b_3c_big.dpx from ticket #3692 --- libavcodec/dpx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 2ad7527..d4d6833 100644 --- a/libavcodec/dpx.c +++