diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2020-03-08 16:23:41 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2020-03-08 16:23:41 +0100 |
commit | 7b2e6168b049be9e7852b2d364d897592eff69fc (patch) | |
tree | 65b043a0d0583d03a55db697e228fa30ffb3061c /src/ufo-roof-filter-task.c | |
parent | 0fa60586c49c2ba10f1e24c6533ebf4980372f2f (diff) | |
download | ufo-roof-master.tar.gz ufo-roof-master.tar.bz2 ufo-roof-master.tar.xz ufo-roof-master.zip |
Fix 64-bit ids, ROOF ids are big-endian, skip incomplete datasets at the end and if with specified latency, try to reconstruct from desynchronized streams (harmful, debugging only)HEADmaster
Diffstat (limited to 'src/ufo-roof-filter-task.c')
-rw-r--r-- | src/ufo-roof-filter-task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ufo-roof-filter-task.c b/src/ufo-roof-filter-task.c index 01bc742..3cee601 100644 --- a/src/ufo-roof-filter-task.c +++ b/src/ufo-roof-filter-task.c @@ -103,7 +103,7 @@ ufo_roof_filter_task_process (UfoTask *task, priv = UFO_ROOF_FILTER_TASK_GET_PRIVATE (task); if (priv->plane) { - int buf_plane; + guint buf_plane; GValue *value; value = ufo_buffer_get_metadata(inputs[0], "plane"); |