From ddf8ad0b68f858bfc38292ecc450d2b847f3b2e5 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 7160671497b0a95f5f723363d054aea0f2ed9bb1. Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/62260e22d6b0ea74087f247b4907579dc05816a7 Author: vanhofen Date: 2022-10-05 (Wed, 05 Oct 2022) --- 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();