Re: [FFmpeg-devel] compile error caused by configure script's change

2017-03-22 Thread Dzung Hoang
I banged my head against this and finally figured out that opencv 3.2.0 does not support C language binding. You need to get opencv 2.4.13. From: Masaru Nomiya To: ffmpeg-devel@ffmpeg.org Sent: Wednesday, March 22, 2017 9:38 PM Subject: [FFmpeg-devel] compile error caused by configure

Re: [FFmpeg-devel] [PATCH] avcodec/exr detect invalid line offset table and recreate table

2017-03-21 Thread Dzung Hoang
Sorry about the bad format for the patch. Here's another try. --- libavcodec/exr.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 034920f..265d44d 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -1640,6 +1640,9 @@ sta

Re: [FFmpeg-devel] [PATCH] avcodec/exr detect invalid line offset table and recreate table

2017-03-21 Thread Dzung Hoang
Thanks Martin for your comments. I made the requested changes here. --- libavcodec/exr.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavcodec/exr.c b/libavcodec/exr.cindex 034920f..265d44d 100644--- a/libavcodec/exr.c+++ b/libavcodec/exr.c@@ -1640,6 +1640,9 @@ static

Re: [FFmpeg-devel] [PATCH] avcodec/exr detect invalid line offset table and recreate table

2017-03-17 Thread Dzung Hoang
Since there are no comments since March 14, I assume this patch is good to go. I tried to commit the patch and push it to the mirror on github.com, but was denied access. Can a developer please apply and commit this patch? Thanks,- Dzung Hoang From: Dzung Hoang To: FFmpeg Development

[FFmpeg-devel] [PATCH] avcodec/exr detect invalid line offset table and recreate table

2017-03-14 Thread Dzung Hoang
added some code to do so. I filed a trac ticket for this issue here: https://trac.ffmpeg.org/ticket/6220. The image files are here: http://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket6220/ Dzung Hoang Signed-off-by: Dzung Hoang --- libavcodec/exr.c | 19 +++ 1 file changed, 19

Re: [FFmpeg-devel] [PATCH] avcodec/exr

2017-03-14 Thread Dzung Hoang
What is the next step to get this issue resolved? Dzung Hoang From: Carl Eugen Hoyos To: FFmpeg development discussions and patches Sent: Tuesday, March 7, 2017 2:02 AM Subject: Re: [FFmpeg-devel] [PATCH] avcodec/exr 2017-03-06 18:24 GMT+01:00 Paul B Mahol : > On 3/6/17, Dz

Re: [FFmpeg-devel] libavcodec/psd : add support for rgb/gray float

2017-03-07 Thread Dzung Hoang
I implemented a 32-bit float GBRAP/GBRP pixel format and used it in vf_zscale.c and vf_overlay.c. I also implemented an EXR encoder using miniexr that uses the new float pixel format. I can contribute this if there is interest. I used the above mods to do HDR video processing that includes overla

Re: [FFmpeg-devel] [PATCH] avcodec/exr

2017-03-07 Thread Dzung Hoang
in a blank image when processed by ffmpeg. Let me know if you need additional test images. Regards,- Dzung Hoang From: Paul B Mahol To: dtho...@yahoo.com Sent: Monday, March 6, 2017 11:37 AM Subject: Re: [FFmpeg-devel] [PATCH] avcodec/exr On 3/6/17, Dzung Hoang wrote: > The

[FFmpeg-devel] [PATCH] avcodec/exr

2017-03-06 Thread Dzung Hoang
added some code to do so. I filed a trac ticket for this issue here: https://trac.ffmpeg.org/ticket/6220. The patch is below. Regards,Dzung Hoang diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 034920f..de48e76 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -1726,6 +1726,24