mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
avcodec/mpegvideo_enc: Use ptrdiff_t for stride
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -1193,8 +1193,8 @@ static int load_input_picture(MpegEncContext *s, const AVFrame *pic_arg)
|
||||
}
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
int src_stride = pic_arg->linesize[i];
|
||||
int dst_stride = i ? s->uvlinesize : s->linesize;
|
||||
ptrdiff_t src_stride = pic_arg->linesize[i];
|
||||
ptrdiff_t dst_stride = i ? s->uvlinesize : s->linesize;
|
||||
int h_shift = i ? s->chroma_x_shift : 0;
|
||||
int v_shift = i ? s->chroma_y_shift : 0;
|
||||
int w = s->width >> h_shift;
|
||||
|
||||
Reference in New Issue
Block a user