diff options
author | phintuka <phintuka> | 2009-09-13 12:43:02 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-09-13 12:43:02 +0000 |
commit | a7086f2a0dcdfeb18d2c179a948a489bd632f5c9 (patch) | |
tree | 1c2db30c312f4d1def97900cd8ea6bc7b351315e | |
parent | a923c45e662f4394fb685432e2131f98ac746376 (diff) | |
download | xineliboutput-unlabeled-1.50.2.tar.gz xineliboutput-unlabeled-1.50.2.tar.bz2 |
Merge revision 1.52unlabeled-1.50.2
Removed dead code
-rw-r--r-- | tools/udp_pes_scheduler.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/tools/udp_pes_scheduler.c b/tools/udp_pes_scheduler.c index 8c628c67..683d2319 100644 --- a/tools/udp_pes_scheduler.c +++ b/tools/udp_pes_scheduler.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: udp_pes_scheduler.c,v 1.50 2009-08-18 19:28:03 phintuka Exp $ + * $Id: udp_pes_scheduler.c,v 1.50.2.1 2009-09-13 12:43:02 phintuka Exp $ * */ @@ -727,26 +727,6 @@ void cUdpScheduler::Schedule(const uchar *Data, int Length) void cUdpScheduler::Action(void) { -#if 0 - { - // Request real-time scheduling - sched_param temp; - temp.sched_priority = 2; - - if (!pthread_setschedparam(pthread_self(), SCHED_RR, &temp)) { - LOGMSG("cUdpScheduler priority set successful SCHED_RR %d [%d,%d]", - temp.sched_priority, - sched_get_priority_min(SCHED_RR), - sched_get_priority_max(SCHED_RR)); - } else { - LOGMSG("cUdpScheduer: Can't set priority to SCHED_RR %d [%d,%d]", - temp.sched_priority, - sched_get_priority_min(SCHED_RR), - sched_get_priority_max(SCHED_RR)); - } - } -#endif - /* UDP Scheduler needs high priority */ const int priority = -5; SetPriority(priority); |