diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-27 22:24:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-11 20:17:45 +0200 |
commit | a0c0900e470fde0d6db360e555620476c2323895 (patch) | |
tree | 60824e71a3e02f95f380c83c98caba0cb11de939 /libavcodec/ffv1.h | |
parent | 54602590d9e479e474db75cafa2e4b9f2799eafe (diff) | |
download | ffmpeg-a0c0900e470fde0d6db360e555620476c2323895.tar.gz |
ffv1dec: Support frame threading with gop > 1
This is about 20-30% faster than slice threading
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 781ddf2bea..914eb103d7 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -91,6 +91,7 @@ typedef struct FFV1Context { int flags; int picture_number; ThreadFrame picture, last_picture; + struct FFV1Context *fsrc; AVFrame *cur; int plane_count; |