add restrict on unpack loop
This commit is contained in:
parent
9d7667cbff
commit
c43757d8da
@ -405,7 +405,7 @@ vips_foreign_load_magick7_parse( VipsForeignLoadMagick7 *magick7,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#define UNPACK( TYPE, Q, P, N ) { \
|
#define UNPACK( TYPE, Q, P, N ) { \
|
||||||
TYPE *tq = (TYPE *) (Q); \
|
TYPE * restrict tq = (TYPE *) (Q); \
|
||||||
int x; \
|
int x; \
|
||||||
\
|
\
|
||||||
for( x = 0; x < (N); x++ ) \
|
for( x = 0; x < (N); x++ ) \
|
||||||
@ -428,8 +428,8 @@ vips_foreign_load_magick7_fill_region( VipsRegion *or,
|
|||||||
int frame = top / magick7->frame_height;
|
int frame = top / magick7->frame_height;
|
||||||
int line = top % magick7->frame_height;
|
int line = top % magick7->frame_height;
|
||||||
|
|
||||||
Quantum *p;
|
Quantum * restrict p;
|
||||||
VipsPel *q;
|
VipsPel * restrict q;
|
||||||
|
|
||||||
g_mutex_lock( magick7->lock );
|
g_mutex_lock( magick7->lock );
|
||||||
p = GetCacheViewAuthenticPixels( magick7->cache_view[frame],
|
p = GetCacheViewAuthenticPixels( magick7->cache_view[frame],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user