1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-07-31 05:02:24 -04:00

DATV: leandvb: skip GSE processing for Windows

This commit is contained in:
f4exb 2021-03-27 09:33:51 +01:00
parent 7e375079fe
commit 2c2cf314b1

View File

@ -3824,6 +3824,7 @@ private:
{ {
handle_ts(data, dfl, syncd, sync); handle_ts(data, dfl, syncd, sync);
} }
#ifdef LINUX
else if (streamtype == 1) else if (streamtype == 1)
{ {
if (fd_gse >= 0) if (fd_gse >= 0)
@ -3843,6 +3844,7 @@ private:
fprintf(stderr, "Unrecognized bbframe\n"); fprintf(stderr, "Unrecognized bbframe\n");
} }
} }
#endif
} }
void handle_ts(uint8_t *data, uint16_t dfl, uint16_t syncd, uint8_t sync) void handle_ts(uint8_t *data, uint16_t dfl, uint16_t syncd, uint8_t sync)