Mercurial > mplayer.hg
changeset 15694:22024992b231
10l for me
author | henry |
---|---|
date | Wed, 08 Jun 2005 07:05:49 +0000 |
parents | 98cc17f305de |
children | 8ce6ba68efb3 |
files | libmpcodecs/vd_ffmpeg.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c Wed Jun 08 03:11:53 2005 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Wed Jun 08 07:05:49 2005 +0000 @@ -453,9 +453,9 @@ #endif if (y < sh->disp_h) { #if LIBAVCODEC_BUILD >= 4670 - mpcodecs_draw_slice (sh, source, src->linesize, sh->disp_w, (y+16)<=sh->disp_h?height:sh->disp_h-y, 0, y); + mpcodecs_draw_slice (sh, source, src->linesize, sh->disp_w, (y+height)<=sh->disp_h?height:sh->disp_h-y, 0, y); #else - mpcodecs_draw_slice (sh,src, stride, sh->disp_w, (y+16)<=sh->disp_h?height:sh->disp_h-y, 0, y); + mpcodecs_draw_slice (sh,src, stride, sh->disp_w, (y+height)<=sh->disp_h?height:sh->disp_h-y, 0, y); #endif } }