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:
parent
ad55f78a07
commit
57b3d09525
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ struct vo_data
|
||||||
struct vo_rect rc_clip;
|
struct vo_rect rc_clip;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef PROC_NEEDS_CACHEALIGN
|
#if NUM_CORES > 1
|
||||||
/* Cache aligned and padded to avoid clobbering other processors' cacheable
|
/* Cache aligned and padded to avoid clobbering other processors' cacheable
|
||||||
* data */
|
* data */
|
||||||
static uint8_t __vo_data[CACHEALIGN_UP(sizeof(struct vo_data))]
|
static uint8_t __vo_data[CACHEALIGN_UP(sizeof(struct vo_data))]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue