Changeset e018b9f1b325d9b10dd877428740bccc50eb71e5
- Timestamp:
- 14/06/08 16:26:30
(4 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213453590 +0200
- git-parent:
[3c5f6d9e775895f0180c60befe3824172b4dfdad]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213453559 +0200
- Message:
input: Remove p_playlist gc signaling now that the playlist is aware of vlc_InputSelectedStreamChanged.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re9fba76 |
re018b9f |
|
| 41 | 41 | #include "input_internal.h" |
|---|
| 42 | 42 | |
|---|
| 43 | | #include "vlc_playlist.h" |
|---|
| 44 | 43 | #include <vlc_iso_lang.h> |
|---|
| 45 | 44 | /* FIXME we should find a better way than including that */ |
|---|
| … | … | |
| 1690 | 1689 | } |
|---|
| 1691 | 1690 | { |
|---|
| 1692 | | /* FIXME: we don't want to depend on the playlist */ |
|---|
| 1693 | | playlist_t * p_playlist = pl_Yield( p_sys->p_input ); |
|---|
| 1694 | | if( VLC_OBJECT(p_playlist) == p_sys->p_input ) |
|---|
| 1695 | | { |
|---|
| 1696 | | PL_LOCK; |
|---|
| 1697 | | p_playlist->gc_date = mdate(); |
|---|
| 1698 | | vlc_object_signal_unlocked( p_playlist ); |
|---|
| 1699 | | PL_UNLOCK; |
|---|
| 1700 | | } |
|---|
| 1701 | | pl_Release( p_sys->p_input ); |
|---|
| 1702 | 1691 | vlc_event_t event; |
|---|
| 1703 | 1692 | event.type = vlc_InputSelectedStreamChanged; |
|---|