From df32859323e96d42f596dc6055e5d86600b60ad6 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 5 Oct 2022 21:48:04 +0200 Subject: [PATCH] Revert "streamts: possible fix local TV" This reverts commit d5a95ce0a0a33b2ae63787d68949747358d87db9. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/62260e22d6b0ea74087f247b4907579dc05816a7 Author: vanhofen Date: 2022-10-05 (Wed, 05 Oct 2022) ------------------ This commit was generated by Migit --- src/driver/streamts.cpp | 2 +- src/driver/streamts.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/driver/streamts.cpp b/src/driver/streamts.cpp index ba8beab5a..da376a52b 100644 --- a/src/driver/streamts.cpp +++ b/src/driver/streamts.cpp @@ -751,7 +751,7 @@ _error: } CStreamStream::CStreamStream(int clientfd, t_channel_id chid, stream_pids_t &_pids) - : CStreamInstance(clientfd, chid, _pids, true) + : CStreamInstance(clientfd, chid, _pids, false) { ifcx = NULL; ofcx = NULL; diff --git a/src/driver/streamts.h b/src/driver/streamts.h index 3092f9c59..b28bae408 100644 --- a/src/driver/streamts.h +++ b/src/driver/streamts.h @@ -61,7 +61,7 @@ class CStreamInstance : public OpenThreads::Thread virtual void run(); friend class CStreamManager; public: - CStreamInstance(int clientfd, t_channel_id chid, stream_pids_t &pids, bool send_raw = true); + CStreamInstance(int clientfd, t_channel_id chid, stream_pids_t &pids, bool send_raw); virtual ~CStreamInstance(); virtual bool Open(); virtual bool Start();