Changeset 667f188961341ded83b0b17527a71961701e945f
- Timestamp:
- 29/10/05 16:27:18
(3 years ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1130596038 +0000
- git-parent:
[9381154038e465e6caf971f19f30420a52635c1b]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1130596038 +0000
- Message:
changesets r12782 and r12804 from 0.8.5-zorglub branch concerning podcast
service discovery and demux modules.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r51796a5 |
r667f188 |
|
| 1015 | 1015 | dnl VLC_ADD_PLUGINS([externrun]) |
|---|
| 1016 | 1016 | VLC_ADD_PLUGINS([access_fake access_filter_timeshift access_filter_record]) |
|---|
| 1017 | | VLC_ADD_PLUGINS([gestures rc telnet hotkeys netsync showintf time marq shout sap fake]) |
|---|
| | 1017 | VLC_ADD_PLUGINS([gestures rc telnet hotkeys netsync showintf time marq podcast shout sap fake]) |
|---|
| 1018 | 1018 | VLC_ADD_PLUGINS([rss mosaic wall motiondetect clone crop]) |
|---|
| 1019 | 1019 | VLC_ADD_PLUGINS([i420_yuy2 i422_yuy2 i420_ymga]) |
|---|
| rffc45b9 |
r667f188 |
|
| 80 | 80 | set_capability( "demux2", 10 ); |
|---|
| 81 | 81 | set_callbacks( E_(Import_DVB), E_(Close_DVB) ); |
|---|
| | 82 | add_submodule(); |
|---|
| | 83 | set_description( _("Podcast playlist import") ); |
|---|
| | 84 | add_shortcut( "podcast" ); |
|---|
| | 85 | set_capability( "demux2", 10 ); |
|---|
| | 86 | set_callbacks( E_(Import_podcast), E_(Close_podcast) ); |
|---|
| 82 | 87 | vlc_module_end(); |
|---|
| 83 | 88 | |
|---|
| rf60b4c7 |
r667f188 |
|
| 43 | 43 | int E_(Import_DVB) ( vlc_object_t * ); |
|---|
| 44 | 44 | void E_(Close_DVB) ( vlc_object_t * ); |
|---|
| | 45 | |
|---|
| | 46 | int E_(Import_podcast) ( vlc_object_t * ); |
|---|
| | 47 | void E_(Close_podcast) ( vlc_object_t * ); |
|---|
| ra0d5817 |
r667f188 |
|
| 5 | 5 | SOURCES_upnp = upnp.cpp |
|---|
| 6 | 6 | SOURCES_bonjour = bonjour.c |
|---|
| | 7 | SOURCES_podcast = podcast.c |
|---|