mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 17:16:51 +00:00
Start writer right after creating it
This commit is contained in:
1
HISTORY
1
HISTORY
@@ -1,6 +1,7 @@
|
||||
VDR Plugin 'streamdev' Revision History
|
||||
---------------------------------------
|
||||
|
||||
- Start writer right after creating it
|
||||
- Corrected typos (thanks to Ville Skytt<74>)
|
||||
- Fixed compiler error in client/device.c with VDR < 1.7.22 (reported by
|
||||
Uwe@vdrportal)
|
||||
|
@@ -128,6 +128,7 @@ void cStreamdevStreamer::Start(cTBSocket *Socket)
|
||||
{
|
||||
Dprintf("start streamer\n");
|
||||
m_Writer = new cStreamdevWriter(Socket, this);
|
||||
m_Writer->Start();
|
||||
Attach();
|
||||
}
|
||||
|
||||
@@ -135,7 +136,6 @@ void cStreamdevStreamer::Activate(bool On)
|
||||
{
|
||||
if (On && !Active()) {
|
||||
Dprintf("activate streamer\n");
|
||||
m_Writer->Start();
|
||||
cThread::Start();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user