Search
j0ke.net Open Build Service
>
Projects
>
multimedia
:
SL11
>
MPlayer
> ffmpeg-fix_sequence-point.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File ffmpeg-fix_sequence-point.patch of Package MPlayer (Revision 5)
Currently displaying revision
5
,
show latest
--- libavcodec/j2kenc.c.orig 2011-10-23 16:00:45.868000419 +0200 +++ libavcodec/j2kenc.c 2011-10-23 19:34:30.966000421 +0200 @@ -869,7 +869,8 @@ int *ptr = t1.data[y-yy0]; for (x = xx0; x < xx1; x++){ *ptr = (comp->data[(comp->coord[0][1] - comp->coord[0][0]) * y + x]); - *ptr++ = (int64_t)*ptr * (int64_t)(8192 * 8192 / band->stepsize) >> 13 - NMSEDEC_FRACBITS; + *ptr = (int64_t)*ptr * (int64_t)(8192 * 8192 / band->stepsize) >> 13 - NMSEDEC_FRACBITS; + ptr++; } } }