summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2023-01-24 00:38:38 +0100
committerMarton Balint <cus@passwd.hu>2023-01-26 20:37:14 +0100
commitc0bc804e552bf6b21ae7da9cfeefe7405e380add (patch)
treef03607c6463fcf5aa68196e55a8f692a6e8b27c3
parentbdb7338b099c4727df99f8575e0c857f2b4eda3c (diff)
downloadffmpeg-c0bc804e552bf6b21ae7da9cfeefe7405e380add.tar.gz
avcodec/ffv1: use 64-bit frame counter
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r--libavcodec/ffv1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h
index 005f308784..04869da5c9 100644
--- a/libavcodec/ffv1.h
+++ b/libavcodec/ffv1.h
@@ -85,7 +85,7 @@ typedef struct FFV1Context {
int chroma_h_shift, chroma_v_shift;
int transparency;
int flags;
- int picture_number;
+ int64_t picture_number;
int key_frame;
ThreadFrame picture, last_picture;
struct FFV1Context *fsrc;