session_driver: Read analog chunks from file.
This commit is contained in:
parent
b317d1bbfb
commit
906921bad2
|
@ -46,6 +46,7 @@ struct session_vdev {
|
||||||
int unitsize;
|
int unitsize;
|
||||||
int num_channels;
|
int num_channels;
|
||||||
int num_analog_channels;
|
int num_analog_channels;
|
||||||
|
int cur_analog_channel;
|
||||||
int cur_chunk;
|
int cur_chunk;
|
||||||
gboolean finished;
|
gboolean finished;
|
||||||
};
|
};
|
||||||
|
@ -108,6 +109,12 @@ static gboolean stream_session_data(struct sr_dev_inst *sdi)
|
||||||
capturefile, 0)))
|
capturefile, 0)))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
sr_dbg("Opened %s.", capturefile);
|
sr_dbg("Opened %s.", capturefile);
|
||||||
|
} else if (vdev->cur_analog_channel < vdev->num_analog_channels) {
|
||||||
|
vdev->capturefile = g_strdup_printf("analog-1-%d",
|
||||||
|
vdev->cur_analog_channel + 1);
|
||||||
|
vdev->cur_analog_channel++;
|
||||||
|
vdev->cur_chunk = 0;
|
||||||
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
/* We got all the chunks, finish up. */
|
/* We got all the chunks, finish up. */
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
@ -319,6 +326,7 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
|
||||||
|
|
||||||
vdev = sdi->priv;
|
vdev = sdi->priv;
|
||||||
vdev->bytes_read = 0;
|
vdev->bytes_read = 0;
|
||||||
|
vdev->cur_analog_channel = 0;
|
||||||
vdev->cur_chunk = 0;
|
vdev->cur_chunk = 0;
|
||||||
vdev->finished = FALSE;
|
vdev->finished = FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue