ffv1enc: Add const attribute to input frame

warning: assigning to 'AVFrame *' (aka 'struct AVFrame *') from
         'const AVFrame *' (aka 'const struct AVFrame *') discards
         qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
This commit is contained in:
Vittorio Giovara 2015-04-29 16:35:43 +01:00
parent 06f4b1e37a
commit 6503cbf842
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ typedef struct FFV1Context {
int transparency;
int flags;
int picture_number;
AVFrame *frame;
const AVFrame *frame;
AVFrame *last_picture;
AVFrame *cur;