Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-07-15 20:41:17 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-07-20 16:13:42 +0300
commit10a9149de242c7bbc4e130d3d7c593b89e20f80e (patch)
treef9200f3785d5e23a1375060545d39d5eca6cf756 /libavcodec/ffv1.h
parentefc618aff9d68d2ddc323a5c5f892ac71951f162 (diff)
ffv1enc: Keep coded_frame.key_frame a write-only variable
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r--libavcodec/ffv1.h1
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;