mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed the call to Channels.Unlock() in cEITScanner::Process()
This commit is contained in:
parent
c1055a6c8f
commit
48a10640e9
@ -960,6 +960,7 @@ Reinhard Nissl <rnissl@gmx.de>
|
|||||||
for some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems
|
for some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems
|
||||||
for implementing cVideoRepacker in remux.c to make sure every PES packet contains
|
for implementing cVideoRepacker in remux.c to make sure every PES packet contains
|
||||||
only data from one frame
|
only data from one frame
|
||||||
|
for fixing the call to Channels.Unlock() in cEITScanner::Process()
|
||||||
|
|
||||||
Richard Robson <richard_robson@beeb.net>
|
Richard Robson <richard_robson@beeb.net>
|
||||||
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
||||||
|
2
HISTORY
2
HISTORY
@ -3593,3 +3593,5 @@ Video Disk Recorder Revision History
|
|||||||
for the bitstreamout plugin (thanks to Werner Fink).
|
for the bitstreamout plugin (thanks to Werner Fink).
|
||||||
- Added the year (two digits) to recording dates in LSTR, and thus also in menus
|
- Added the year (two digits) to recording dates in LSTR, and thus also in menus
|
||||||
(suggested by Jan Ekholm).
|
(suggested by Jan Ekholm).
|
||||||
|
- Fixed the call to Channels.Unlock() in cEITScanner::Process() (thanks to
|
||||||
|
Reinhard Nissl).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: eitscan.c 1.24 2005/05/05 13:05:00 kls Exp $
|
* $Id: eitscan.c 1.25 2005/06/05 14:43:29 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "eitscan.h"
|
#include "eitscan.h"
|
||||||
@ -181,9 +181,9 @@ void cEITScanner::Process(void)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Channels.Unlock();
|
||||||
}
|
}
|
||||||
lastScan = time(NULL);
|
lastScan = time(NULL);
|
||||||
Channels.Unlock();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user