avcodec/mpegvideo_enc: Use ptrdiff_t for stride
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit e063c1d079)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a43d719c50
commit
4afbda4872
1 changed files with 2 additions and 2 deletions
|
|
@ -1259,8 +1259,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…
Add table
Add a link
Reference in a new issue