#define LOG_PREFIX "transform/scale"
struct context {
- double factor;
+ struct sr_rational factor;
};
static int init(struct sr_transform *t, GHashTable *options)
t->priv = ctx = g_malloc0(sizeof(struct context));
- ctx->factor = g_variant_get_double(g_hash_table_lookup(options, "factor"));
+ g_variant_get(g_hash_table_lookup(options, "factor"), "(xt)",
+ &ctx->factor.p, &ctx->factor.q);
return SR_OK;
}
struct sr_channel *ch;
GSList *l;
float *fdata;
+ float factor;
int i, num_channels, c;
if (!t || !t->sdi || !packet_in || !packet_out)
analog = packet_in->payload;
fdata = (float *)analog->data;
num_channels = g_slist_length(analog->channels);
+ factor = (float) ctx->factor.p / ctx->factor.q;
for (i = 0; i < analog->num_samples; i++) {
/* For now scale all values in all channels. */
for (l = analog->channels, c = 0; l; l = l->next, c++) {
ch = l->data;
(void)ch;
- fdata[i * num_channels + c] *= ctx->factor;
+ fdata[i * num_channels + c] *= factor;
}
}
break;
static const struct sr_option *get_options(void)
{
+ int64_t p = 1;
+ uint64_t q = 1;
+
/* Default to a scaling factor of 1.0. */
if (!options[0].def)
- options[0].def = g_variant_ref_sink(g_variant_new_double(1.0));
+ options[0].def = g_variant_ref_sink(g_variant_new(("(xt"), &p, &q));
return options;
}