[libav-devel] [PATCH 4/5] ffv1: frame threading

2014-02-15 Thread Luca Barbato
From: Michael Niedermayer michae...@gmx.at In line with the reference implementation. --- libavcodec/ffv1.h| 5 +- libavcodec/ffv1dec.c | 217 +++ libavcodec/ffv1enc.c | 4 +- 3 files changed, 205 insertions(+), 21 deletions(-) diff --git

Re: [libav-devel] [PATCH 4/5] ffv1: frame threading

2014-02-10 Thread Diego Biurrun
On Sun, Feb 09, 2014 at 07:28:16PM +0100, Luca Barbato wrote: --- a/libavcodec/ffv1dec.c +++ b/libavcodec/ffv1dec.c @@ -353,6 +354,43 @@ static int decode_slice(AVCodecContext *c, void *arg) +memcpy(pdst, psrc, sizeof(*pdst)); +pdst-state = NULL; +

[libav-devel] [PATCH 4/5] ffv1: frame threading

2014-02-09 Thread Luca Barbato
From: Michael Niedermayer michae...@gmx.at In line with the reference implementation. --- libavcodec/ffv1.h| 5 +- libavcodec/ffv1dec.c | 199 ++- libavcodec/ffv1enc.c | 4 +- 3 files changed, 187 insertions(+), 21 deletions(-) diff --git