Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-07 Thread Donny Yang
Fixed so threading isn't removed completely. Sorry this took so long. Took too long to figure out that decode_ihdr_chunk() was being called in each thread and thus overwriting the cur_w/h value set by update_thread_context(). ("Remove threading support" patch can be ignored now) _

Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-03 Thread Ronald S. Bultje
Hi, On Wed, Jun 3, 2015 at 1:20 AM, Donny Yang wrote: > On 3 June 2015 at 04:15, Ronald S. Bultje wrote: > > On Tue, Jun 2, 2015 at 1:42 PM, Donny Yang wrote: > > > On 3 June 2015 at 03:31, Paul B Mahol wrote: > > > > Dana 2. 6. 2015. 17:49 osoba "Donny Yang" napisala > je: > > > > > > > > >

Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-02 Thread Donny Yang
On 3 June 2015 at 04:15, Ronald S. Bultje wrote: > Hi, > > On Tue, Jun 2, 2015 at 1:42 PM, Donny Yang wrote: > > > On 3 June 2015 at 03:31, Paul B Mahol wrote: > > > > > Dana 2. 6. 2015. 17:49 osoba "Donny Yang" napisala je: > > > > > > > > Each frame depends on the previous frame any way, and

Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-02 Thread Ronald S. Bultje
Hi, On Tue, Jun 2, 2015 at 1:42 PM, Donny Yang wrote: > On 3 June 2015 at 03:31, Paul B Mahol wrote: > > > Dana 2. 6. 2015. 17:49 osoba "Donny Yang" napisala je: > > > > > > Each frame depends on the previous frame any way, and it will > > > cause bugs with frame disposal > > > > > > Signed-of

Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-02 Thread Donny Yang
On 3 June 2015 at 03:31, Paul B Mahol wrote: > Dana 2. 6. 2015. 17:49 osoba "Donny Yang" napisala je: > > > > Each frame depends on the previous frame any way, and it will > > cause bugs with frame disposal > > > > Signed-off-by: Donny Yang > > --- > > libavcodec/pngdec.c | 11 +-- > >

Re: [FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-02 Thread Paul B Mahol
Dana 2. 6. 2015. 17:49 osoba "Donny Yang" napisala je: > > Each frame depends on the previous frame any way, and it will > cause bugs with frame disposal > > Signed-off-by: Donny Yang > --- > libavcodec/pngdec.c | 11 +-- > 1 file changed, 1 insertion(+), 10 deletions(-) > > diff --git a

[FFmpeg-devel] [PATCH 1/6] avcodec/apng: Remove threading support

2015-06-02 Thread Donny Yang
Each frame depends on the previous frame any way, and it will cause bugs with frame disposal Signed-off-by: Donny Yang --- libavcodec/pngdec.c | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 2512799..2ea3e8b 100644 -