decoder-timestamp
- C
- C++
- CSharp
- Java
- Swift
- Python
- Go
- PHP
// Get the Encode timestamp.
uint64_t encoder_ts = d_args.enc_ts;
// Get the Decode timestamp.
uint64_t decoder_ts = d_args.dec_ts;
// Get the Encode timestamp.
uint64_t encoderTs = decoder.getEncTs();
// Get the Decode timestamp.
uint64_t decoderTs = decoder.getDecTs();
// Get the Encode timestamp
ulong encoderTs = mteDecoder.GetEncTs();
// Get the Decode timestamp
ulong decoderTs = mteDecoder.GetDecTs();
// Get the Encode timestamp
long encoderTs = mteDecoder.getEncTs();
// Get the Decode timestamp
long decoderTs = mteDecoder.getDecTs();
// Get the Encode timestamp.
let encoderTs: UInt64 = decoder.getEncTs()
// Get the Decode timestamp.
let decoderTs: UInt64 = decoder.getDecTs()
# Get the Encode timestamp.
encoder_ts = mte_decoder.get_enc_ts()
# Get the Decode timestamp.
decoder_ts = mte_decoder.get_dec_ts()
// Get the Encode timestamp
encoderTs := mteDecoder.GetEncTs()
// Get the Decode timestamp
decoderTs := mteDecoder.GetDecTs()
<?php
// Get the Encode timestamp
$encoderTs = $mteDecoder->getEncTs();
?>
<?php
// Get the Decode timestamp
$decoderTs = $mteDecoder->getDecTs();
?>