mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avcodec/mpegvideo_enc: Use ptrdiff_t for stride
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit e063c1d079086150580ed7a9ad076da122e27f76) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a6a9e0fee7
commit
645e835788
@ -1083,8 +1083,8 @@ static int load_input_picture(MpegEncContext *s, const AVFrame *pic_arg)
|
||||
&v_chroma_shift);
|
||||
|
||||
for (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 ? h_chroma_shift : 0;
|
||||
int v_shift = i ? v_chroma_shift : 0;
|
||||
int w = s->width >> h_shift;
|
||||
|
Loading…
x
Reference in New Issue
Block a user