Example #1
0
void boardCaptureDestroy()
{
    boardCaptureStop();

    if (cap.timer != NULL) {
        boardTimerDestroy(cap.timer);
        cap.timer = NULL;
    }
    cap.state = CAPTURE_IDLE;
}
Example #2
0
void actionVideoCaptureStop() {
    if (emulatorGetState() == EMU_STOPPED) {
        return;
    }
    
    emulatorSuspend();
    
    boardCaptureStop();

    emulatorResume();
    archUpdateMenu(0);
}