mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Fixed a typo
This commit is contained in:
parent
e4e9d7a55f
commit
7a1842cba6
4
remux.c
4
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 5.15 2024/10/13 13:34:32 kls Exp $
|
||||
* $Id: remux.c 5.16 2024/12/04 14:33:10 kls Exp $
|
||||
*/
|
||||
|
||||
#include "remux.h"
|
||||
@ -2155,7 +2155,7 @@ void cFrameDetector::SetMissing(void)
|
||||
frameChecker->SetMissing();
|
||||
}
|
||||
|
||||
bool cFrameDetector::NewFrame(int *PreviousErrors, int * MissingFrames)
|
||||
bool cFrameDetector::NewFrame(int *PreviousErrors, int *MissingFrames)
|
||||
{
|
||||
if (newFrame) {
|
||||
if (PreviousErrors)
|
||||
|
4
remux.h
4
remux.h
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: remux.h 5.7 2024/09/21 19:18:18 kls Exp $
|
||||
* $Id: remux.h 5.8 2024/12/04 14:33:22 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __REMUX_H
|
||||
@ -570,7 +570,7 @@ public:
|
||||
///< is scanned for the PAT/PMT and then a rewind is done on the file.
|
||||
bool Synced(void) { return synced; }
|
||||
///< Returns true if the frame detector has synced on the data stream.
|
||||
bool NewFrame(int *PreviousErrors = NULL, int * MissingFrames = NULL);
|
||||
bool NewFrame(int *PreviousErrors = NULL, int *MissingFrames = NULL);
|
||||
///< Returns true if the data given to the last call to Analyze() started a
|
||||
///< new frame. If PreviousErrors is given, it will be set to the number of errors in
|
||||
///< the previous frame. If MissingFrames is given, it will be set to the number of
|
||||
|
Loading…
x
Reference in New Issue
Block a user