Changeset 466c96907cc274286c87f29fc500021713d4dcc0
- Timestamp:
- 22/10/07 18:56:41
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1193072201 +0000
- git-parent:
[7d478fff44510c6e0c1868047c23d989d8969bd0]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1193072201 +0000
- Message:
Event manager yields libvlc (and all the media_* stuff yields the event manager already)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6ee1e19 |
r466c969 |
|
| 76 | 76 | p_em->p_obj = p_obj; |
|---|
| 77 | 77 | p_em->p_libvlc_instance = p_libvlc_inst; |
|---|
| | 78 | libvlc_retain( p_libvlc_inst ); |
|---|
| 78 | 79 | ARRAY_INIT( p_em->listeners_groups ); |
|---|
| 79 | 80 | vlc_mutex_init( p_libvlc_inst->p_libvlc_int, &p_em->object_lock ); |
|---|
| … | … | |
| 103 | 104 | FOREACH_END() |
|---|
| 104 | 105 | ARRAY_RESET( p_em->listeners_groups ); |
|---|
| | 106 | |
|---|
| | 107 | libvlc_release( p_em->p_livclc_instance ); |
|---|
| 105 | 108 | free( p_em ); |
|---|
| 106 | 109 | } |
|---|