diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-27 22:21:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-11 20:16:49 +0200 |
commit | 69cfe63a43f43207f72fd677c47eafcf58fcfd13 (patch) | |
tree | 856cf4fabbfdf18c75bf67470fe01c5566172feb /libavcodec/ffv1.h | |
parent | 44f69c0df8c1d12b450c01ac151d850bf6a8a5b6 (diff) | |
download | ffmpeg-69cfe63a43f43207f72fd677c47eafcf58fcfd13.tar.gz |
ffv1: Switch to ThreadFrame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 981004798e..781ddf2bea 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -41,6 +41,7 @@ #include "mathops.h" #include "put_bits.h" #include "rangecoder.h" +#include "thread.h" #ifdef __INTEL_COMPILER #undef av_flatten @@ -89,7 +90,7 @@ typedef struct FFV1Context { int transparency; int flags; int picture_number; - AVFrame picture, last_picture; + ThreadFrame picture, last_picture; AVFrame *cur; int plane_count; |