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:44:40 +0100 |
commit | 6792559f8aa8fb0775b259fa35c9a5dc2dd24796 (patch) | |
tree | 34c4d43761fef7f99b34d4c3ba38b9c791373a4c /libavcodec/vc1.h | |
parent | 042aec41ae0b28545b2924d2e3baf98e725d678a (diff) | |
download | ffmpeg-6792559f8aa8fb0775b259fa35c9a5dc2dd24796.tar.gz |
vc1: use the AVFrame API properly.
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 0ece45a290..d70e33700e 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -380,7 +380,7 @@ typedef struct VC1Context{ //@{ int new_sprite; int two_sprites; - AVFrame sprite_output_frame; + AVFrame *sprite_output_frame; int output_width, output_height, sprite_width, sprite_height; uint8_t* sr_rows[2][2]; ///< Sprite resizer line cache //@} |