Mercurial > hg > audiodb
view liszt.cpp @ 648:4b79043f90ba
hack lshlib into happiness with mingw
_locking() for file locking; hardcode pagesize as 64k; use
lseek()/read()-write()/lseek() and buffers to emulate mmap().
I haven't actually tested all this lshlib functionality, but with this
change I can build an audioDB.dll which works well enough to be linked
into a binary which seems to work under Wine.
author | mas01cr |
---|---|
date | Tue, 13 Oct 2009 20:17:06 +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; }