update libltc to v1.1.4-4-gb034a23 (endianess issue)

This commit is contained in:
Robin Gareus 2015-09-09 16:54:26 +02:00
parent 6982213198
commit 48579d42b0
4 changed files with 45 additions and 17 deletions

View file

@ -216,7 +216,7 @@ void ltc_time_to_frame(LTCFrame* frame, SMPTETimecode* stime, enum LTC_TV_STANDA
void ltc_frame_reset(LTCFrame* frame) {
memset(frame, 0, sizeof(LTCFrame));
// syncword = 0x3FFD
#ifdef __BIG_ENDIAN__
#ifdef LTC_BIG_ENDIAN
// mirrored BE bit order: FCBF
frame->sync_word = 0xFCBF;
#else