diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2011-02-16 18:41:08 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2011-02-16 18:41:08 +0100 |
| commit | 1da41232bbb095c380dcc2cfb33b7114f05e8ced (patch) | |
| tree | 5d56a60f37b8829f5d949637f6419bbb628c3920 /lib/dvb | |
| parent | 0c417aee83bac3ab0a70d5e0b3360d18b3663a23 (diff) | |
| parent | 1df9bae2f009edc95b88b72c557136ee267f1db5 (diff) | |
| download | enigma2-1da41232bbb095c380dcc2cfb33b7114f05e8ced.tar.gz enigma2-1da41232bbb095c380dcc2cfb33b7114f05e8ced.zip | |
Merge branch 'bug_672_removed_pvr_device'
Diffstat (limited to 'lib/dvb')
| -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; |
