62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* Copyright (C) 2004 - 2021 AJA Video Systems, Inc.
|
|
*/
|
|
////////////////////////////////////////////////////////////
|
|
//
|
|
// Filename: ntv2genlock.h
|
|
// Purpose: Genlock monitor
|
|
//
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
#ifndef NTV2GENLOCK_HEADER
|
|
#define NTV2GENLOCK_HEADER
|
|
|
|
#include "ntv2system.h"
|
|
|
|
#define NTV2_GENLOCK_STRING_SIZE 80
|
|
|
|
enum ntv2_genlock_mode {
|
|
ntv2_genlock_mode_unknown,
|
|
ntv2_genlock_mode_zero,
|
|
ntv2_genlock_mode_ntsc_27mhz,
|
|
ntv2_genlock_mode_size
|
|
};
|
|
|
|
struct ntv2_genlock {
|
|
int index;
|
|
char name[NTV2_GENLOCK_STRING_SIZE];
|
|
Ntv2SystemContext* system_context;
|
|
Ntv2SpinLock state_lock;
|
|
|
|
Ntv2Thread monitor_task;
|
|
bool monitor_enable;
|
|
Ntv2Event monitor_event;
|
|
|
|
uint32_t ref_source;
|
|
uint32_t gen_source;
|
|
bool ref_locked;
|
|
bool gen_locked;
|
|
uint32_t ref_lines;
|
|
uint32_t ref_rate;
|
|
|
|
uint32_t gen_lines;
|
|
uint32_t gen_rate;
|
|
|
|
uint8_t page_address;
|
|
};
|
|
|
|
struct ntv2_genlock *ntv2_genlock_open(Ntv2SystemContext* sys_con,
|
|
const char *name, int index);
|
|
void ntv2_genlock_close(struct ntv2_genlock *ntv2_gen);
|
|
|
|
Ntv2Status ntv2_genlock_configure(struct ntv2_genlock *ntv2_gen);
|
|
|
|
Ntv2Status ntv2_genlock_enable(struct ntv2_genlock *ntv2_gen);
|
|
Ntv2Status ntv2_genlock_disable(struct ntv2_genlock *ntv2_gen);
|
|
|
|
Ntv2Status ntv2_genlock_program(struct ntv2_genlock *ntv2_gen,
|
|
enum ntv2_genlock_mode mode);
|
|
|
|
#endif
|