summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo_enc.c
diff options
context:
space:
mode:
authorLukasz Marek <lukasz.m.luki@gmail.com>2014-02-07 16:43:10 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-08 02:55:51 +0100
commit3f47e24cbeb8d7e530ad9d7b47b0660a2754efa3 (patch)
treee52957ca49d329091f7c22c66237148be034b575 /libavcodec/mpegvideo_enc.c
parentaeb2905fb7cebf457b53323195855871383e53bb (diff)
lavc/mpegvideo: add missing const
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r--libavcodec/mpegvideo_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index fa695ad20b..54ef15f5e7 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -1603,7 +1603,7 @@ static int frame_start(MpegEncContext *s)
}
int ff_MPV_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
- AVFrame *pic_arg, int *got_packet)
+ const AVFrame *pic_arg, int *got_packet)
{
MpegEncContext *s = avctx->priv_data;
int i, stuffing_count, ret;