The termination callback should be private

This commit is contained in:
Isaac Connor 2019-01-08 13:12:22 -05:00
parent b8bf91bec6
commit a5de51478e
1 changed files with 2 additions and 1 deletions

View File

@ -99,12 +99,13 @@ class FfmpegCamera : public Camera {
void Initialise();
void Terminate();
static int FfmpegInterruptCallback(void*ctx);
int PrimeCapture();
int PreCapture();
int Capture( Image &image );
int CaptureAndRecord( Image &image, timeval recording, char* event_directory );
int PostCapture();
private:
static int FfmpegInterruptCallback(void*ctx);
};
#endif // ZM_FFMPEG_CAMERA_H