more work on network source and syntax cleanup in iq exporter

This commit is contained in:
AlexandreRouma
2024-02-13 03:11:37 +01:00
parent 34171d4edc
commit 95052c34ff
2 changed files with 16 additions and 9 deletions

View File

@ -509,7 +509,7 @@ private:
size = sizeof(int16_t)*2;
break;
case SAMPLE_TYPE_INT32:
volk_32f_s32f_convert_32i((int32_t*)_this->buffer, (float*)data, (float)2147483647.0f, count*2);
volk_32f_s32f_convert_32i((int32_t*)_this->buffer, (float*)data, 2147483647.0f, count*2);
size = sizeof(int32_t)*2;
break;
case SAMPLE_TYPE_FLOAT32: