diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-02-07 16:43:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-08 02:55:51 +0100 |
commit | 3f47e24cbeb8d7e530ad9d7b47b0660a2754efa3 (patch) | |
tree | e52957ca49d329091f7c22c66237148be034b575 /libavcodec/mpegvideo.h | |
parent | aeb2905fb7cebf457b53323195855871383e53bb (diff) | |
download | ffmpeg-3f47e24cbeb8d7e530ad9d7b47b0660a2754efa3.tar.gz |
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.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 47a58f74b4..afc9c51c0a 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -800,7 +800,7 @@ void ff_MPV_frame_end(MpegEncContext *s); int ff_MPV_encode_init(AVCodecContext *avctx); int ff_MPV_encode_end(AVCodecContext *avctx); int ff_MPV_encode_picture(AVCodecContext *avctx, AVPacket *pkt, - AVFrame *frame, int *got_packet); + const AVFrame *frame, int *got_packet); void ff_dct_encode_init_x86(MpegEncContext *s); void ff_MPV_common_init_x86(MpegEncContext *s); void ff_MPV_common_init_axp(MpegEncContext *s); |