Commit 6503cbf8 authored by Vittorio Giovara's avatar Vittorio Giovara

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]
parent 06f4b1e3
......@@ -78,7 +78,7 @@ typedef struct FFV1Context {
int transparency;
int flags;
int picture_number;
AVFrame *frame;
const AVFrame *frame;
AVFrame *last_picture;
AVFrame *cur;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment