diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-29 08:58:10 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-12-09 09:10:14 +0100 |
commit | d4f1188d1a662fed5347e70016da49e01563e8a8 (patch) | |
tree | e0baaa7669f49da3d4469d6a256494285910a645 /libavcodec/dv.h | |
parent | c9ca220ef26e36abd22085e6fa156c0dbc43bbf0 (diff) | |
download | ffmpeg-d4f1188d1a662fed5347e70016da49e01563e8a8.tar.gz |
dv: use AVFrame API properly
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r-- | libavcodec/dv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 79896cbee5..01a4eec49a 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -34,7 +34,7 @@ typedef struct DVVideoContext { const DVprofile *sys; - AVFrame picture; + AVFrame *frame; AVCodecContext *avctx; uint8_t *buf; |