[vlc-commits] [Git][videolan/vlc][master] playlist: Allow podcast module to be forced
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Jun 16 08:18:57 UTC 2022
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
95f211fd by Hugo Beauzée-Luyssen at 2022-06-16T08:00:40+00:00
playlist: Allow podcast module to be forced
- - - - -
1 changed file:
- modules/demux/playlist/podcast.c
Changes:
=====================================
modules/demux/playlist/podcast.c
=====================================
@@ -48,7 +48,8 @@ int Import_podcast( vlc_object_t *p_this )
stream_t *p_demux = (stream_t *)p_this;
if( stream_IsMimeType( p_demux->s, "text/xml" )
- || stream_IsMimeType( p_demux->s, "application/xml" ) )
+ || stream_IsMimeType( p_demux->s, "application/xml" )
+ || p_this->force )
{
/* XML: check if the root node is "rss". Use a specific peeked
* probestream in order to not modify the source state while probing.
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/95f211fd2f72fc7526defc8820b746af86f97bb2
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/95f211fd2f72fc7526defc8820b746af86f97bb2
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list