Mercurial > hg > audiodb
view liszt.cpp @ 622:695651b8c1a3
added a query hook. Should compile a run, but I haven't exhaustively tested the various input parameters yet.
As such, there may well be some ways to get to the api calls that bring the module down.
Let me know if you find any.
The actual query call is a bit of a mess, but will be more intuitive from the native python layer (to be written)...
so the python bindings now have a complete path:
>>import _pyadb
>>aDB = _pyadb._pyadb_create("test.adb", 0,0,0)
>>_pyadb._pyadb_status(aDB)
>>_pyadb._pyadb_insertFromFile(aDB, "someFeats.mfcc12")
...(add some more data)
>>result = _pyadb._pyadb_queryFromKey(aDB, "a Key in aDB", [options])
and then result has a nice dict of your results.
author | map01bf |
---|---|
date | Mon, 21 Sep 2009 17:42:52 +0000 |
parents | e18843dc0aea |
children |
line wrap: on
line source
extern "C" { #include "audioDB_API.h" } #include "audioDB-internals.h" adb_liszt_results_t *audiodb_liszt(adb_t *adb) { uint32_t nfiles = adb->header->numFiles; adb_liszt_results_t *results; results = (adb_liszt_results_t *) calloc(sizeof(adb_liszt_results_t),1); results->nresults = nfiles; if(nfiles > 0) { results->entries = (adb_track_entry_t *) malloc(nfiles * sizeof(adb_track_entry_t)); } for(uint32_t k = 0; k < nfiles; k++) { results->entries[k].nvectors = (*adb->track_lengths)[k]; results->entries[k].key = audiodb_index_key(adb, k); } return results; } int audiodb_liszt_free_results(adb_t *adb, adb_liszt_results_t *results) { free(results->entries); free(results); return 0; }