diff options
Diffstat (limited to 'apps/plugins/mpegplayer/stream_mgr.h')
| -rw-r--r-- | apps/plugins/mpegplayer/stream_mgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/stream_mgr.h b/apps/plugins/mpegplayer/stream_mgr.h index a00b39f..a07305a 100644 --- a/apps/plugins/mpegplayer/stream_mgr.h +++ b/apps/plugins/mpegplayer/stream_mgr.h @@ -35,8 +35,8 @@ struct stream_mgr bool seeked; /* A seek happened and things must be resynced */ int status; /* Current playback status */ - struct list_item strl; /* List of available streams */ - struct list_item actl; /* List of active streams */ + void *strl[MPEGPLAYER_MAX_STREAMS+1]; /* List of available streams */ + void *actl[MPEGPLAYER_MAX_STREAMS+1]; /* List of active streams */ struct mutex str_mtx; /* Main stream manager mutex */ struct mutex actl_mtx; /* Lock for current-streams list */ union /* A place for reusable non-cacheable parameters */ |