view liszt.cpp @ 589:9119f2fa3efe

Header file rearrangement Make it so that lshlib.h is slightly more like a header file to include to use the LSH ("class G") class, and slightly less a header file for developing that class, by removing all the #includes and moving them to the one-file lshlib.cpp instead. Make audioDB-internals.h slightly more of a project header file, by including there all the headers we actually need. Remove some assert()s (which do nothing) and some Uns32Ts (-> uint32_t)
author mas01cr
date Tue, 11 Aug 2009 21:42:13 +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;
}