diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-24 09:00:01 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-24 09:00:01 +0000 |
| commit | fa4ce6edf7d5ab9852a2ee3c5bea0b32fd704465 (patch) | |
| tree | cfdb39e431449428de382949d9245b99c392762b /lib/dvb | |
| parent | ad5b517b4648c91ec34936ac5eba7cde4c34bb31 (diff) | |
| download | enigma2-fa4ce6edf7d5ab9852a2ee3c5bea0b32fd704465.tar.gz enigma2-fa4ce6edf7d5ab9852a2ee3c5bea0b32fd704465.zip | |
only read twice when the previous read returned max bytes
Diffstat (limited to 'lib/dvb')
| -rw-r--r-- | lib/dvb/demux.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index b0d9b400..0fbd6fbd 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -312,6 +312,8 @@ void eDVBPESReader::data(int) m_read(buffer, r); else eWarning("PES reader not active"); + if (r != 16384) + break; } } |
