1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-22 15:56:59 +00:00

Add const to draw_slice argument to match what FFmpeg expects for draw_horiz_band.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29956 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-11-22 13:18:12 +00:00
parent dcd0daccca
commit 2959f9e032

View File

@ -55,7 +55,7 @@ typedef struct {
static int get_buffer(AVCodecContext *avctx, AVFrame *pic);
static void release_buffer(AVCodecContext *avctx, AVFrame *pic);
static void draw_slice(struct AVCodecContext *s, AVFrame *src, int offset[4],
static void draw_slice(struct AVCodecContext *s, const AVFrame *src, int offset[4],
int y, int type, int height);
static enum PixelFormat get_format(struct AVCodecContext *avctx,
@ -451,7 +451,7 @@ static void uninit(sh_video_t *sh){
}
static void draw_slice(struct AVCodecContext *s,
AVFrame *src, int offset[4],
const AVFrame *src, int offset[4],
int y, int type, int height){
sh_video_t *sh = s->opaque;
uint8_t *source[MP_MAX_PLANES]= {src->data[0] + offset[0], src->data[1] + offset[1], src->data[2] + offset[2]};