pub unsafe extern "C" fn ltc_time_to_frame(
    frame: *mut LTCFrame,
    stime: *mut SMPTETimecode,
    standard: LTC_TV_STANDARD,
    flags: c_int
)
Expand description

Translate SMPTETimecode struct into its binary LTC representation and set the LTC frame’s parity bit accordingly (see \ref ltc_frame_set_parity)

@param frame output - the frame to be set @param stime input - timecode input @param standard the TV standard to use for parity bit assignment @param flags binary combination of \ref LTC_BG_FLAGS - here only LTC_USE_DATE and LTC_NO_PARITY are relevant. if LTC_USE_DATE is given, user-fields in LTCFrame will be set from the date in SMPTETimecode, otherwise the user-bits are not modified. All non-timecode fields remain untouched - except for the parity bit unless LTC_NO_PARITY is given.