diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-11-02 14:35:57 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-11-02 14:35:57 +0100 |
commit | 57a3169013f67c8af7ab9ee505cf3b254b912168 (patch) | |
tree | ff978d96bed833f2029307e1c84e18e6b895b981 /recording.c | |
parent | 38d48afad921baa9edf49535ca9be8ce1fda1592 (diff) | |
download | vdr-57a3169013f67c8af7ab9ee505cf3b254b912168.tar.gz vdr-57a3169013f67c8af7ab9ee505cf3b254b912168.tar.bz2 |
Improved frame detection by parsing just far enough into the MPEG-4 NAL units to get the necessary information about frames and slices; the initial syncing of the frame detector is now done immediately after the first complete GOP has been seen
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recording.c b/recording.c index 71272fca..0edfe245 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 2.67 2012/10/15 10:23:37 kls Exp $ + * $Id: recording.c 2.68 2012/11/01 11:51:52 kls Exp $ */ #include "recording.h" @@ -1550,7 +1550,6 @@ void cIndexFileGenerator::Action(void) if (Processed > 0) { if (FrameDetector.Synced()) { // Synced FrameDetector, so rewind for actual processing: - FrameDetector.Reset(); Rewind = true; } Buffer.Del(Processed); |