[vlc-commits] demux: ts: don't try to seek on non seekable
Francois Cartegnie
git at videolan.org
Thu Dec 18 22:39:58 CET 2014
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Dec 17 17:30:32 2014 +0100| [708fee3ab77fd5959fbd87c74b2df9a1c5b9d0bf] | committer: Francois Cartegnie
demux: ts: don't try to seek on non seekable
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=708fee3ab77fd5959fbd87c74b2df9a1c5b9d0bf
---
modules/demux/ts.c | 32 +++++++++++++++++++++-----------
1 file changed, 21 insertions(+), 11 deletions(-)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index b7de0e2..65c0acd 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -308,6 +308,7 @@ typedef struct
struct demux_sys_t
{
stream_t *stream;
+ bool b_canseek;
vlc_mutex_t csa_lock;
/* TS packet size (188, 192, 204) */
@@ -794,6 +795,7 @@ static int Open( vlc_object_t *p_this )
p_sys->b_split_es = var_InheritBool( p_demux, "ts-split-es" );
+ p_sys->b_canseek = false;
p_sys->i_pid_ref_pcr = -1;
p_sys->i_first_pcr = -1;
p_sys->i_current_pcr = -1;
@@ -811,18 +813,23 @@ static int Open( vlc_object_t *p_this )
return VLC_ENOMEM;
}
- bool can_seek = false;
- stream_Control( p_sys->stream, STREAM_CAN_FASTSEEK, &can_seek );
- if( can_seek )
+ bool b_can_fastseek = false;
+ stream_Control( p_sys->stream, STREAM_CAN_SEEK, &p_sys->b_canseek );
+ stream_Control( p_sys->stream, STREAM_CAN_FASTSEEK, &b_can_fastseek );
+ if ( p_sys->b_canseek )
{
- GetFirstPCR( p_demux );
- CheckPCR( p_demux );
- GetLastPCR( p_demux );
- }
- if( p_sys->i_first_pcr < 0 || p_sys->i_last_pcr < 0 )
- {
- msg_Dbg( p_demux, "Force Seek Per Percent: PCR's not found,");
- p_sys->b_force_seek_per_percent = true;
+ if( b_can_fastseek )
+ {
+ GetFirstPCR( p_demux );
+ CheckPCR( p_demux );
+ GetLastPCR( p_demux );
+ }
+
+ if( p_sys->i_first_pcr < 0 || p_sys->i_last_pcr < 0 )
+ {
+ msg_Dbg( p_demux, "Force Seek Per Percent: PCR's not found,");
+ p_sys->b_force_seek_per_percent = true;
+ }
}
while( p_sys->i_pmt_es <= 0 && vlc_object_alive( p_demux ) )
@@ -1088,6 +1095,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
case DEMUX_SET_POSITION:
f = (double) va_arg( args, double );
+ if(!p_sys->b_canseek)
+ return VLC_EGENERIC;
+
if( p_sys->b_force_seek_per_percent ||
(p_sys->b_dvb_meta && p_sys->b_access_control) ||
p_sys->i_last_pcr - p_sys->i_first_pcr <= 0 )
More information about the vlc-commits
mailing list