Mercurial > hg > audiodb
view close.cpp @ 553:ea341e68649f
Produce embryonic example of integration with runner ("sonic annotator")
There's much that is hardwired (though a bit less than in the example
sent by e-mail to Casey, Cannam and Raimond). More needs to be done,
including thinking about how a typical user will actually be using the
combination of tools; this code is proof-of-concept more than anything
else.
author | mas01cr |
---|---|
date | Fri, 13 Feb 2009 11:23:10 +0000 |
parents | cc2b97d020b1 |
children | 4eedc18634f5 |
line wrap: on
line source
extern "C" { #include "audioDB_API.h" } #include "audioDB-internals.h" void audiodb_close(adb_t *adb) { free(adb->path); free(adb->header); delete adb->keys; delete adb->keymap; delete adb->track_lengths; delete adb->track_offsets; if(adb->cached_lsh) { delete adb->cached_lsh; } close(adb->fd); free(adb); }