diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-16 18:45:13 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-16 18:45:13 +0200 |
| commit | 13705824885aa7f8fb779713eab7d0e5874769a4 (patch) | |
| tree | 374e0b0c30d02b61fa3ba9fbca92ec336095dd80 /lib/base/filepush.cpp | |
| parent | a9f871b933a8771d6946395df1e1f0569b3cf582 (diff) | |
| download | enigma2-13705824885aa7f8fb779713eab7d0e5874769a4.tar.gz enigma2-13705824885aa7f8fb779713eab7d0e5874769a4.zip | |
use POLLIN instead of POLLPRI for clip buffer empty
Diffstat (limited to 'lib/base/filepush.cpp')
| -rw-r--r-- | lib/base/filepush.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index 605ec8a8..3412c84a 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -192,7 +192,7 @@ void eFilePushThread::thread() struct pollfd pfd; pfd.fd = m_fd_dest; - pfd.events = POLLPRI; + pfd.events = POLLIN; poll(&pfd, 1, 10000); sleep(5); /* HACK to allow ES buffer to drain */ already_empty = 1; |
