diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2011-02-16 18:41:04 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2011-02-16 18:41:04 +0100 |
| commit | a6b8704419415c3453c63f7909f4d01a03aaf133 (patch) | |
| tree | 54811a6fac498cc52e21d7fd9d81fb66de129bc0 | |
| parent | 6e860dd76f06031b31bac9280e9b85ab7abfdadf (diff) | |
| parent | 1df9bae2f009edc95b88b72c557136ee267f1db5 (diff) | |
| download | enigma2-a6b8704419415c3453c63f7909f4d01a03aaf133.tar.gz enigma2-a6b8704419415c3453c63f7909f4d01a03aaf133.zip | |
Merge branch 'bug_672_removed_pvr_device' into experimental
| -rw-r--r-- | lib/dvb/decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/decoder.cpp b/lib/dvb/decoder.cpp index df45063a..a89f72bb 100644 --- a/lib/dvb/decoder.cpp +++ b/lib/dvb/decoder.cpp @@ -1306,7 +1306,7 @@ RESULT eTSMPEGDecoder::showSinglePic(const char *filename) fstat(f, &s); if (m_video_clip_fd == -1) m_video_clip_fd = open("/dev/dvb/adapter0/video0", O_WRONLY); - while (m_video_clip_fd >= 0) + if (m_video_clip_fd >= 0) { bool seq_end_avail = false; size_t pos=0; |
