mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
width instead of chromWidth causing segfault in some cases
Originally committed as revision 12994 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
parent
8f9298f801
commit
4ccbc7d5a9
@ -2291,7 +2291,7 @@ static inline void RENAME(rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_
|
||||
"movd %%mm0, (%3, %%eax) \n\t"
|
||||
"addl $4, %%eax \n\t"
|
||||
" js 1b \n\t"
|
||||
: : "r" (src+width*6), "r" (src+srcStride+width*6), "r" (udst+width), "r" (vdst+width), "g" (-width)
|
||||
: : "r" (src+chromWidth*6), "r" (src+srcStride+chromWidth*6), "r" (udst+chromWidth), "r" (vdst+chromWidth), "g" (-chromWidth)
|
||||
: "%eax", "%ebx"
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user