mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/snow: make new_picture const
Fixes "assignment discards const qualifier from pointer target type" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
96b069450c
commit
35a9959aca
|
@ -117,7 +117,7 @@ typedef struct SnowContext{
|
||||||
H264QpelContext h264qpel;
|
H264QpelContext h264qpel;
|
||||||
MpegvideoEncDSPContext mpvencdsp;
|
MpegvideoEncDSPContext mpvencdsp;
|
||||||
SnowDWTContext dwt;
|
SnowDWTContext dwt;
|
||||||
AVFrame *new_picture;
|
const AVFrame *new_picture;
|
||||||
AVFrame *input_picture; ///< new_picture with the internal linesizes
|
AVFrame *input_picture; ///< new_picture with the internal linesizes
|
||||||
AVFrame *current_picture;
|
AVFrame *current_picture;
|
||||||
AVFrame *last_picture[MAX_REF_FRAMES];
|
AVFrame *last_picture[MAX_REF_FRAMES];
|
||||||
|
|
Loading…
Reference in New Issue