]> git.vomp.tv Git - vompclient.git/commitdiff
Change video detection to 10k
authorChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 15:31:02 +0000 (15:31 +0000)
committerChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 15:31:02 +0000 (15:31 +0000)
CREDITS
recording.cc

diff --git a/CREDITS b/CREDITS
index 433092e0539a210d6e2eff8d6ce67e48dc31bc9d..fd0fc9a4c24a58f92a76434b804180108eda5fc9 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -38,6 +38,7 @@ Marten Richter
   Debian packages for the e-TOBI VDR repository
   Information about index.vdr and code to navigate recordings
   Windows port of vompclient
+  Reporting of many bugs
   Audio channel selection
 
 
index 78dc47482226d27c735736006fcefc813918a377..67aee091620030c7dea7d87bdd362a32da2e8fdd 100644 (file)
@@ -101,7 +101,7 @@ bool Recording::isRadio()
   if (!lengthBytes || !lengthFrames) return false;
 
   UINT thisRead;
-  UCHAR* buffer = vdr->getBlock(0ULL, 250000U, &thisRead);
+  UCHAR* buffer = vdr->getBlock(0ULL, 10000U, &thisRead);
   if (!buffer) return false;
 
   if (!thisRead)