diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-04 13:13:20 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-09 13:41:22 +0100 |
commit | 74bffc00c541079e5a052988485f26cdd4d43bb0 (patch) | |
tree | ee022c5d2e37f4229e0b4b5a28217b11fd2c6b3e /libavcodec/pixlet.c | |
parent | 74b5564fb51107fc512bd25081ce7e11cb35871e (diff) | |
download | ffmpeg-74bffc00c541079e5a052988485f26cdd4d43bb0.tar.gz |
avcodec: Constify some AVPackets
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/pixlet.c')
-rw-r--r-- | libavcodec/pixlet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pixlet.c b/libavcodec/pixlet.c index 42acd683fa..ad9d830af7 100644 --- a/libavcodec/pixlet.c +++ b/libavcodec/pixlet.c @@ -525,7 +525,7 @@ static void postprocess_chroma(AVFrame *frame, int w, int h, int depth) } static int decode_plane(AVCodecContext *avctx, int plane, - AVPacket *avpkt, AVFrame *frame) + const AVPacket *avpkt, AVFrame *frame) { PixletContext *ctx = avctx->priv_data; ptrdiff_t stride = frame->linesize[plane] / 2; |