Mercurial > hg > audiodb
view liszt.cpp @ 592:cfa74bcc1249
Remove uses of mmap() from open.cpp
(These are relatively easy to deal with; just replace them with an
lseek()/read() pair. Of course, now we're destructively modifying the
fd position; I'd have liked to use pread() but, surprise, that's not
available on mingw.)
author | mas01cr |
---|---|
date | Tue, 11 Aug 2009 21:42:29 +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; }