1
0
Fork 0
forked from len0rd/rockbox

mpegplayer: align video output data structure only on multicore

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25330 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-03-25 18:17:54 +00:00
parent ad55f78a07
commit 57b3d09525

View file

@ -43,7 +43,7 @@ struct vo_data
struct vo_rect rc_clip;
};
#ifdef PROC_NEEDS_CACHEALIGN
#if NUM_CORES > 1
/* Cache aligned and padded to avoid clobbering other processors' cacheable
* data */
static uint8_t __vo_data[CACHEALIGN_UP(sizeof(struct vo_data))]