[vlc-commits] chromecast: notify eof earlier
Thomas Guillem
git at videolan.org
Fri Jan 26 14:46:17 CET 2018
vlc/vlc-3.0 | branch: master | Thomas Guillem <thomas at gllm.fr> | Fri Jan 26 13:36:44 2018 +0100| [2c4b3fcbab60fc53682224b347fdbbac8ed97f3a] | committer: Jean-Baptiste Kempf
chromecast: notify eof earlier
(cherry picked from commit 9c123db903281db0fee63c3178466a4801556716)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=2c4b3fcbab60fc53682224b347fdbbac8ed97f3a
---
modules/stream_out/chromecast/chromecast.h | 1 +
modules/stream_out/chromecast/chromecast_ctrl.cpp | 12 +++++++++++-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/modules/stream_out/chromecast/chromecast.h b/modules/stream_out/chromecast/chromecast.h
index 2555ea7c34..2f13f5a2b6 100644
--- a/modules/stream_out/chromecast/chromecast.h
+++ b/modules/stream_out/chromecast/chromecast.h
@@ -226,6 +226,7 @@ private:
ChromecastCommunication m_communication;
std::queue<QueueableMessages> m_msgQueue;
States m_state;
+ bool m_eof;
std::string m_artwork;
std::string m_title;
diff --git a/modules/stream_out/chromecast/chromecast_ctrl.cpp b/modules/stream_out/chromecast/chromecast_ctrl.cpp
index 9602c6369d..e059392c9f 100644
--- a/modules/stream_out/chromecast/chromecast_ctrl.cpp
+++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp
@@ -86,6 +86,7 @@ intf_sys_t::intf_sys_t(vlc_object_t * const p_this, int port, std::string device
, m_streaming_port(port)
, m_communication( p_this, device_addr.c_str(), device_port )
, m_state( Authenticating )
+ , m_eof( false )
, m_ctl_thread_interrupt(p_interrupt)
, m_time_playback_started( VLC_TS_INVALID )
, m_ts_local_start( VLC_TS_INVALID )
@@ -176,6 +177,7 @@ void intf_sys_t::setHasInput( const std::string mime_type )
// we cannot start a new load when the last one is still processing
m_communication.msgPlayerLoad( m_appTransportId, m_streaming_port, m_title, m_artwork, mime_type );
setState( Loading );
+ m_eof = false;
}
/**
@@ -478,6 +480,7 @@ void intf_sys_t::processMediaMessage( const castchannel::CastMessage& msg )
{
/* TODO reset demux PCR ? */
m_time_playback_started = mdate();
+ m_eof = false;
setState( Playing );
}
}
@@ -485,6 +488,13 @@ void intf_sys_t::processMediaMessage( const castchannel::CastMessage& msg )
{
if ( m_state != Buffering )
{
+ /* EOF when state goes from Playing to Buffering. There can
+ * be a lot of false positives (when seeking or when the cc
+ * request more input) but this state is fetched only when
+ * the input has reached EOF. */
+
+ if( m_state == Playing )
+ m_eof = true;
m_time_playback_started = VLC_TS_INVALID;
setState( Buffering );
}
@@ -717,7 +727,7 @@ void intf_sys_t::waitSeekDone()
bool intf_sys_t::isFinishedPlaying()
{
vlc_mutex_locker locker(&m_lock);
- return m_state == Ready;
+ return m_state == Ready || m_state == LoadFailed || m_state == Dead || m_eof;
}
void intf_sys_t::setTitle(const char* psz_title)
More information about the vlc-commits
mailing list