[vlc-devel] [PATCH] input/stream_demux: SEEK is possible
Frédéric Yhuel
yhuelf at gmail.com
Tue Oct 23 09:33:11 CEST 2012
---
src/input/stream_demux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/input/stream_demux.c b/src/input/stream_demux.c
index 5f05217..3612fa6 100644
--- a/src/input/stream_demux.c
+++ b/src/input/stream_demux.c
@@ -267,7 +267,7 @@ static int DStreamControl( stream_t *s, int i_query, va_list args )
case STREAM_CAN_SEEK:
p_b = (bool*) va_arg( args, bool * );
- *p_b = false;
+ *p_b = true;
return VLC_SUCCESS;
case STREAM_CAN_FASTSEEK:
--
1.7.9.5
More information about the vlc-devel
mailing list