summaryrefslogtreecommitdiff
path: root/responselive.h
diff options
context:
space:
mode:
Diffstat (limited to 'responselive.h')
-rw-r--r--responselive.h103
1 files changed, 103 insertions, 0 deletions
diff --git a/responselive.h b/responselive.h
new file mode 100644
index 0000000..4df0d75
--- /dev/null
+++ b/responselive.h
@@ -0,0 +1,103 @@
+/*
+ * responselive.h: VDR on Smart TV plugin
+ *
+ * Copyright (C) 2013 T. Lohmar
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ */
+
+#ifndef __RESPONSE_LIVE_H__
+#define __RESPONSE_LIVE_H__
+
+#include "responsebase.h"
+
+#include <cstdio>
+#include <string>
+#include <sys/time.h>
+
+#include <vdr/ringbuffer.h>
+#include <vdr/receiver.h>
+
+//class cHttpResource;
+
+using namespace std;
+
+//class SmartTvServer;
+class cPatPmtGenerator;
+
+class cLiveRelay : public cReceiver {
+ public:
+ cLiveRelay(cChannel* channel, cDevice* device, string chan_id, int req_id, cHttpResource*);
+ ~cLiveRelay();
+ // static cLiveRelay *create(string channel_id, int req_id, cHttpResource*);
+
+ // void addClient();
+ // int removeClient();
+
+ void setNotifRequired() { mNotifRequired = true; };
+ string mChannelId;
+ cRingBufferLinear *mRingBuffer;
+ pthread_mutex_t processedRingLock;
+
+protected:
+ virtual void Activate(bool On);
+ virtual void Receive(uchar *Data, int Length);
+ void detachLiveRelay();
+ // cThread
+ // virtual void Action(void);
+
+ Log* mLog;
+ private:
+ // SmartTvServer *mFactory;
+ int mReqId;
+ cHttpResource* mRequest;
+ // int mNumClients;
+ // timeval mStartTime;
+
+ int mNotifFd;
+ bool mNotifRequired;
+};
+
+class cResponseLive : public cResponseBase {
+ public:
+ cResponseLive(cHttpResource*, string chan_id );
+ virtual ~cResponseLive();
+
+ int fillDataBlk();
+
+ int fillDataBlk_straight();
+ int fillDataBlk_pcr();
+ int fillDataBlk_iframe();
+
+ private:
+ bool InitRelay(string chan_id);
+ void WritePatPmt();
+
+ string mChannelId;
+ cLiveRelay* mRelay;
+
+ cPatPmtGenerator* mPatPmtGen;
+ bool mInStartPhase;
+ cFrameDetector* mFrameDetector;
+ int mVpid;
+ int mVtype;
+ int mPpid;
+
+ int mStartThreshold;
+};
+
+#endif