From 1941c4c3194ce09c26771cd261581f2eb42d17d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Thu, 10 Jan 2008 10:55:50 +0000 Subject: [PATCH] 'htsclient' need a full demux in order to correctly rewrite MPEG transport stream --- htsclient.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htsclient.c b/htsclient.c index 046981d3..9cd2d779 100644 --- a/htsclient.c +++ b/htsclient.c @@ -409,7 +409,8 @@ client_subscription_callback(struct th_subscription *s, switch(event) { case TRANSPORT_AVAILABLE: assert(c->c_muxer == NULL); - c->c_muxer = ts_muxer_init(s, client_output_ts, c, TM_HTSCLIENTMODE); + c->c_muxer = ts_muxer_init(s, client_output_ts, c, + TM_HTSCLIENTMODE | TM_SEEKABLE); ts_muxer_play(c->c_muxer, 0); break;