summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--remux.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index ffdfa80c..e3d7d4bd 100644
--- a/HISTORY
+++ b/HISTORY
@@ -5958,3 +5958,4 @@ Video Disk Recorder Revision History
PlayVideo() didn't play anything.
- Added an 'int' typecast to calculations involving FramesPerSecond() to avoid
compiler warnings.
+- Fixed detecting frames for pure audio recordings.
diff --git a/remux.c b/remux.c
index cb37c4f2..23c5b379 100644
--- a/remux.c
+++ b/remux.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remux.c 2.11 2009/01/23 16:44:29 kls Exp $
+ * $Id: remux.c 2.12 2009/01/24 12:29:19 kls Exp $
*/
#include "remux.h"
@@ -742,6 +742,7 @@ int cFrameDetector::Analyze(const uchar *Data, int Length)
if (frameDuration) {
newFrame = true;
independentFrame = true;
+ scanning = false;
}
else
framesPerPayloadUnit = 1;