Merge commit '2a06c2a03e'
* commit '2a06c2a03e': mpegvideo_enc: Draw edges on input for non-multiple of 16 resolutions Conflicts: libavcodec/mpegvideo_enc.c See:1e78679768Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e40cdf8604
1 changed files with 2 additions and 2 deletions
|
|
@ -1193,8 +1193,8 @@ static int load_input_picture(MpegEncContext *s, const AVFrame *pic_arg)
|
|||
if ((s->width & 15) || (s->height & (vpad-1))) {
|
||||
s->mpvencdsp.draw_edges(dst, dst_stride,
|
||||
w, h,
|
||||
16>>h_shift,
|
||||
vpad>>v_shift,
|
||||
16 >> h_shift,
|
||||
vpad >> v_shift,
|
||||
EDGE_BOTTOM);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue