diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-15 18:41:17 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-07-20 14:13:42 +0100 |
commit | 10a9149de242c7bbc4e130d3d7c593b89e20f80e (patch) | |
tree | f9200f3785d5e23a1375060545d39d5eca6cf756 /libavcodec/ffv1.h | |
parent | efc618aff9d68d2ddc323a5c5f892ac71951f162 (diff) | |
download | ffmpeg-10a9149de242c7bbc4e130d3d7c593b89e20f80e.tar.gz |
ffv1enc: Keep coded_frame.key_frame a write-only variable
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index bc433bceb5..6e8c798b6a 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -78,6 +78,7 @@ typedef struct FFV1Context { int transparency; int flags; int picture_number; + int key_frame; const AVFrame *frame; AVFrame *last_picture; |