summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-11-09 10:14:46 +0100
committerAnton Khirnov <anton@khirnov.net>2013-11-16 17:50:51 +0100
commita6064b12b481072abe0df53e5996cf103994526f (patch)
treea290b8bcde69d2d470033c4998160a2806ff428b /libavcodec/ffv1.h
parent706a92926ccae390e3f74520a60b4d5790e8ddc4 (diff)
ffv1: use the AVFrame API properly.
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r--libavcodec/ffv1.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h
index 43c96079ae..40fc3935ff 100644
--- a/libavcodec/ffv1.h
+++ b/libavcodec/ffv1.h
@@ -79,7 +79,8 @@ typedef struct FFV1Context {
int transparency;
int flags;
int picture_number;
- AVFrame picture, last_picture;
+ AVFrame *frame;
+ AVFrame *last_picture;
AVFrame *cur;
int plane_count;