The termination callback should be private
This commit is contained in:
parent
b8bf91bec6
commit
a5de51478e
|
@ -99,12 +99,13 @@ class FfmpegCamera : public Camera {
|
||||||
void Initialise();
|
void Initialise();
|
||||||
void Terminate();
|
void Terminate();
|
||||||
|
|
||||||
static int FfmpegInterruptCallback(void*ctx);
|
|
||||||
|
|
||||||
int PrimeCapture();
|
int PrimeCapture();
|
||||||
int PreCapture();
|
int PreCapture();
|
||||||
int Capture( Image &image );
|
int Capture( Image &image );
|
||||||
int CaptureAndRecord( Image &image, timeval recording, char* event_directory );
|
int CaptureAndRecord( Image &image, timeval recording, char* event_directory );
|
||||||
int PostCapture();
|
int PostCapture();
|
||||||
|
private:
|
||||||
|
static int FfmpegInterruptCallback(void*ctx);
|
||||||
};
|
};
|
||||||
#endif // ZM_FFMPEG_CAMERA_H
|
#endif // ZM_FFMPEG_CAMERA_H
|
||||||
|
|
Loading…
Reference in New Issue