Changeset 667f188961341ded83b0b17527a71961701e945f

Show
Ignore:
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
  • configure.ac

    r51796a5 r667f188  
    10151015dnl  VLC_ADD_PLUGINS([externrun]) 
    10161016  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]) 
    10181018  VLC_ADD_PLUGINS([rss mosaic wall motiondetect clone crop]) 
    10191019  VLC_ADD_PLUGINS([i420_yuy2 i422_yuy2 i420_ymga]) 
  • modules/demux/playlist/Modules.am

    r2f6ff2a r667f188  
    55                   b4s.c \ 
    66           pls.c \ 
    7            dvb.c 
     7           dvb.c \ 
     8           podcast.c  
  • modules/demux/playlist/playlist.c

    rffc45b9 r667f188  
    8080        set_capability( "demux2", 10 ); 
    8181        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) ); 
    8287vlc_module_end(); 
    8388 
  • modules/demux/playlist/playlist.h

    rf60b4c7 r667f188  
    4343int E_(Import_DVB) ( vlc_object_t * ); 
    4444void E_(Close_DVB) ( vlc_object_t * ); 
     45 
     46int E_(Import_podcast) ( vlc_object_t * ); 
     47void E_(Close_podcast) ( vlc_object_t * ); 
  • modules/services_discovery/Modules.am

    ra0d5817 r667f188  
    55SOURCES_upnp = upnp.cpp 
    66SOURCES_bonjour = bonjour.c 
     7SOURCES_podcast = podcast.c