Run-Length Encoding support for the OLS.

This commit is contained in:
Gareth McMullin 2011-10-29 15:57:17 +13:00 committed by Uwe Hermann
parent 221304219e
commit 3a4d09c0de
4 changed files with 43 additions and 45 deletions

View File

@ -51,6 +51,7 @@ static int capabilities[] = {
SR_HWCAP_SAMPLERATE, SR_HWCAP_SAMPLERATE,
SR_HWCAP_CAPTURE_RATIO, SR_HWCAP_CAPTURE_RATIO,
SR_HWCAP_LIMIT_SAMPLES, SR_HWCAP_LIMIT_SAMPLES,
SR_HWCAP_RLE,
0, 0,
}; };
@ -608,6 +609,13 @@ static int hw_set_configuration(int device_index, int capability, void *value)
} else } else
ret = SR_OK; ret = SR_OK;
break; break;
case SR_HWCAP_RLE:
if(strcmp(value, "on") == 0) {
sr_info("ols: enabling RLE");
ols->flag_reg |= FLAG_RLE;
}
ret = SR_OK;
break;
default: default:
ret = SR_ERR; ret = SR_ERR;
} }
@ -622,8 +630,8 @@ static int receive_data(int fd, int revents, void *session_data)
struct sr_device_instance *sdi; struct sr_device_instance *sdi;
struct ols_device *ols; struct ols_device *ols;
GSList *l; GSList *l;
int count, buflen, num_channels, offset, i, j; int num_channels, offset, i, j;
unsigned char byte, *buffer; unsigned char byte;
/* find this device's ols_device struct by its fd */ /* find this device's ols_device struct by its fd */
ols = NULL; ols = NULL;
@ -663,53 +671,41 @@ static int receive_data(int fd, int revents, void *session_data)
num_channels++; num_channels++;
} }
if (revents == G_IO_IN if (revents == G_IO_IN) {
&& ols->num_transfers / num_channels <= ols->limit_samples) {
if (serial_read(fd, &byte, 1) != 1) if (serial_read(fd, &byte, 1) != 1)
return FALSE; return FALSE;
/* Ignore it if we've read enough */
if(ols->num_samples >= ols->limit_samples)
return TRUE;
ols->sample[ols->num_bytes++] = byte; ols->sample[ols->num_bytes++] = byte;
sr_dbg("ols: received byte 0x%.2x", byte); sr_dbg("ols: received byte 0x%.2x", byte);
if (ols->num_bytes == num_channels) { if (ols->num_bytes == num_channels) {
/* Got a full sample. */ /* Got a full sample. */
sr_dbg("ols: received sample 0x%.*x", sr_dbg("ols: received sample 0x%.*x",
ols->num_bytes * 2, (int) *ols->sample); ols->num_bytes * 2, *(int*)ols->sample);
if (ols->flag_reg & FLAG_RLE) { if (ols->flag_reg & FLAG_RLE) {
/* /*
* In RLE mode -1 should never come in as a * In RLE mode -1 should never come in as a
* sample, because bit 31 is the "count" flag. * sample, because bit 31 is the "count" flag.
* TODO: Endianness may be wrong here, could be
* sample[3].
*/ */
if (ols->sample[0] & 0x80 if (ols->sample[ols->num_bytes - 1] & 0x80) {
&& !(ols->last_sample[0] & 0x80)) { ols->sample[ols->num_bytes - 1] &= 0x7F;
count = (int)(*ols->sample) & 0x7fffffff; /* FIXME: This will only work on
if (!(buffer = g_try_malloc(count))) { * little-endian systems
sr_err("ols: %s: buffer malloc "
"failed", __func__);
return FALSE;
}
buflen = 0;
for (i = 0; i < count; i++) {
memcpy(buffer + buflen, ols->last_sample, 4);
buflen += 4;
}
} else {
/*
* Just a single sample, next sample
* will probably be a count referring
* to this -- but this one is still a
* part of the stream.
*/ */
buffer = ols->sample; ols->rle_count = *(int*)(ols->sample);
buflen = 4; sr_dbg("ols: RLE count = %d", ols->rle_count);
} ols->num_bytes = 0;
} else { return TRUE;
/* No compression. */ }
buffer = ols->sample; }
buflen = 4; ols->num_samples += ols->rle_count + 1;
ols->num_samples++; if(ols->num_samples > ols->limit_samples) {
/* Save us from overrunning the buffer */
ols->rle_count -= ols->num_samples - ols->limit_samples;
ols->num_samples = ols->limit_samples;
} }
if (num_channels < 4) { if (num_channels < 4) {
@ -735,23 +731,20 @@ static int receive_data(int fd, int revents, void *session_data)
} }
} }
memcpy(ols->sample, ols->tmp_sample, 4); memcpy(ols->sample, ols->tmp_sample, 4);
sr_dbg("ols: full sample 0x%.8x", (int) *ols->sample); sr_dbg("ols: full sample 0x%.8x", *(int*)ols->sample);
} }
/* the OLS sends its sample buffer backwards. /* the OLS sends its sample buffer backwards.
* store it in reverse order here, so we can dump * store it in reverse order here, so we can dump
* this on the session bus later. * this on the session bus later.
*/ */
offset = (ols->limit_samples - ols->num_transfers / num_channels) * 4; offset = (ols->limit_samples - ols->num_samples) * 4;
memcpy(ols->raw_sample_buf + offset, ols->sample, 4); for(i = 0; i <= ols->rle_count; i++)
memcpy(ols->raw_sample_buf + offset + (i*4), ols->sample, 4);
if (buffer == ols->sample)
memcpy(ols->last_sample, buffer, num_channels);
else
g_free(buffer);
memset(ols->sample, 0, 4); memset(ols->sample, 0, 4);
ols->num_bytes = 0; ols->num_bytes = 0;
ols->rle_count = 0;
} }
} else { } else {
/* /*
@ -931,7 +924,8 @@ static int hw_start_acquisition(int device_index, gpointer session_data)
/* The flag register wants them here, and 1 means "disable channel". */ /* The flag register wants them here, and 1 means "disable channel". */
ols->flag_reg |= ~(changrp_mask << 2) & 0x3c; ols->flag_reg |= ~(changrp_mask << 2) & 0x3c;
ols->flag_reg |= FLAG_FILTER; ols->flag_reg |= FLAG_FILTER;
data = ols->flag_reg << 24; ols->rle_count = 0;
data = (ols->flag_reg << 24) | ((ols->flag_reg << 8) & 0xff0000);
if (send_longcommand(sdi->serial->fd, CMD_SET_FLAGS, data) != SR_OK) if (send_longcommand(sdi->serial->fd, CMD_SET_FLAGS, data) != SR_OK)
return SR_ERR; return SR_ERR;

View File

@ -83,8 +83,8 @@ struct ols_device {
unsigned int num_transfers; unsigned int num_transfers;
unsigned int num_samples; unsigned int num_samples;
int rle_count;
int num_bytes; int num_bytes;
char last_sample[4];
unsigned char sample[4]; unsigned char sample[4];
unsigned char tmp_sample[4]; unsigned char tmp_sample[4];
unsigned char *raw_sample_buf; unsigned char *raw_sample_buf;

View File

@ -39,6 +39,7 @@ struct sr_hwcap_option sr_hwcap_options[] = {
{SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"}, {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
{SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"}, {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
{SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"}, {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"},
{SR_HWCAP_RLE, SR_T_CHAR, "Run Length Encoding", "rle"},
{0, 0, NULL, NULL}, {0, 0, NULL, NULL},
}; };

View File

@ -255,6 +255,9 @@ enum {
/** The device supports setting a pattern (pattern generator mode). */ /** The device supports setting a pattern (pattern generator mode). */
SR_HWCAP_PATTERN_MODE, SR_HWCAP_PATTERN_MODE,
/** The device supports Run Length Encoding. */
SR_HWCAP_RLE,
/*--- Special stuff -------------------------------------------------*/ /*--- Special stuff -------------------------------------------------*/
/* TODO: Better description. */ /* TODO: Better description. */