summaryrefslogtreecommitdiff
path: root/controller.c
diff options
context:
space:
mode:
Diffstat (limited to 'controller.c')
-rw-r--r--controller.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/controller.c b/controller.c
index 1ed852b..a0e8bfe 100644
--- a/controller.c
+++ b/controller.c
@@ -138,8 +138,6 @@ struct srd_decoder_instance *srd_instance_new(const char *id)
struct srd_decoder_instance *di;
PyObject *py_args;
- fprintf(stdout, "%s: %s\n", __func__, id);
-
if (!(dec = srd_get_decoder_by_id(id)))
return NULL;
@@ -202,8 +200,6 @@ int srd_session_start(int num_probes, int unitsize, uint64_t samplerate)
GSList *d;
struct srd_decoder_instance *di;
- fprintf(stdout, "%s\n", __func__);
-
for (d = di_list; d; d = d->next) {
di = d->data;
di->num_probes = num_probes;
@@ -281,8 +277,6 @@ int srd_session_feed(uint64_t timeoffset, uint64_t duration, uint8_t *inbuf,
GSList *d;
int ret;
-// fprintf(stdout, "%s: %d bytes\n", __func__, inbuflen);
-
for (d = di_list; d; d = d->next) {
if ((ret = srd_run_decoder(timeoffset, duration, d->data, inbuf,
inbuflen)) != SRD_OK)
@@ -301,16 +295,13 @@ int pd_add(struct srd_decoder_instance *di, int output_type,
if (!(pdo = g_try_malloc(sizeof(struct srd_pd_output))))
return -1;
- /* pdo_id is just a simple index, nothing is deleted from this list anway */
+ /* pdo_id is just a simple index, nothing is deleted from this list anyway. */
pdo->pdo_id = g_slist_length(di->pd_output);
pdo->output_type = output_type;
pdo->decoder = di->decoder;
pdo->protocol_id = g_strdup(protocol_id);
di->pd_output = g_slist_append(di->pd_output, pdo);
- fprintf(stdout, "%s: output type %d, protocol_id %s, id %d\n",
- __func__, output_type, protocol_id, pdo->pdo_id);
-
return pdo->pdo_id;
}
@@ -339,7 +330,6 @@ int srd_register_callback(int output_type, void *cb)
pd_cb->callback = cb;
callbacks = g_slist_append(callbacks, pd_cb);
- printf("got cb for %d: %p\n", output_type, cb);
return SRD_OK;
}