Changeset ace8caefad8be422bc4b478d4c8b2474189801f0 for src/libvlc.h
- Timestamp:
- 06/22/08 14:30:30 (3 months ago)
- git-parent:
- Files:
-
- src/libvlc.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/libvlc.h
r5277e0f race8cae 245 245 /// (needs cleanup) 246 246 247 /* Singleton objects */ 247 248 module_t *p_memcpy_module; ///< Fast memcpy plugin used 248 249 playlist_t *p_playlist; //< the playlist singleton … … 253 254 /* Private playlist data (FIXME - playlist_t is too public...) */ 254 255 sout_instance_t *p_sout; ///< kept sout instance (for playlist) 256 257 /* Thread support */ 258 unsigned threads_count; 259 vlc_mutex_t threads_lock; 260 vlc_cond_t threads_wait; 255 261 } libvlc_priv_t; 256 262
