diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-09 10:14:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-16 17:50:51 +0100 |
commit | a6064b12b481072abe0df53e5996cf103994526f (patch) | |
tree | a290b8bcde69d2d470033c4998160a2806ff428b /libavcodec/ffv1.h | |
parent | 706a92926ccae390e3f74520a60b4d5790e8ddc4 (diff) | |
download | ffmpeg-a6064b12b481072abe0df53e5996cf103994526f.tar.gz |
ffv1: use the AVFrame API properly.
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 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; |