Changeset 26d208e59874977e52bcf36d92f439592cd1524a
- Timestamp:
- 04/05/08 20:11:22
(5 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209924682 +0300
- git-parent:
[973f2f06b07e7773fd58abd3e5d4f89454dc7bc4]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209924682 +0300
- Message:
Privatize p_interaction
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r973f2f0 |
r26d208e |
|
| 48 | 48 | playlist_t *p_playlist; ///< playlist object |
|---|
| 49 | 49 | |
|---|
| 50 | | vlc_object_t *p_interaction; ///< interface interaction object |
|---|
| 51 | | |
|---|
| 52 | 50 | void *p_stats_computer; ///< Input thread computing stats (needs cleanup) |
|---|
| 53 | 51 | global_stats_t *p_stats; ///< Global statistics |
|---|
| r973f2f0 |
r26d208e |
|
| 181 | 181 | priv = libvlc_priv (p_libvlc); |
|---|
| 182 | 182 | p_libvlc->p_playlist = NULL; |
|---|
| 183 | | p_libvlc->p_interaction = NULL; |
|---|
| | 183 | priv->p_interaction = NULL; |
|---|
| 184 | 184 | priv->p_vlm = NULL; |
|---|
| 185 | 185 | p_libvlc->psz_object_name = strdup( "libvlc" ); |
|---|
| … | … | |
| 741 | 741 | |
|---|
| 742 | 742 | /* Initialize interaction */ |
|---|
| 743 | | p_libvlc->p_interaction = interaction_Init( p_libvlc ); |
|---|
| | 743 | priv->p_interaction = interaction_Init( p_libvlc ); |
|---|
| 744 | 744 | |
|---|
| 745 | 745 | /* Initialize playlist and get commandline files */ |
|---|
| … | … | |
| 989 | 989 | /* Free interaction */ |
|---|
| 990 | 990 | msg_Dbg( p_libvlc, "removing interaction" ); |
|---|
| 991 | | vlc_object_release( p_libvlc->p_interaction ); |
|---|
| | 991 | vlc_object_release( priv->p_interaction ); |
|---|
| 992 | 992 | |
|---|
| 993 | 993 | stats_TimersDumpAll( p_libvlc ); |
|---|
| r973f2f0 |
r26d208e |
|
| 224 | 224 | module_t *p_memcpy_module; ///< Fast memcpy plugin used |
|---|
| 225 | 225 | vlm_t *p_vlm; ///< VLM if created from libvlc-common.c |
|---|
| 226 | | |
|---|
| | 226 | vlc_object_t *p_interaction; ///< interface interaction object |
|---|
| 227 | 227 | httpd_t *p_httpd; ///< HTTP daemon (src/network/httpd.c) |
|---|
| 228 | 228 | } libvlc_priv_t; |
|---|