2008-02-17 00:12:23 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* This program is free software; you can redistribute it and/or modify it */
|
|
|
|
/* under the terms of the GNU General Public License as published by the */
|
|
|
|
/* Free Software Foundation; either version 2 of the License, or (at your */
|
|
|
|
/* option) any later version. */
|
|
|
|
/* */
|
|
|
|
/* This program is distributed in the hope that it will be useful, but WITHOUT */
|
|
|
|
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
|
|
|
|
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for */
|
|
|
|
/* more details. */
|
|
|
|
/* */
|
|
|
|
/* You should have received a copy of the GNU General Public License along */
|
|
|
|
/* with This program; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
2008-02-17 00:28:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2008-04-08 22:06:38 +02:00
|
|
|
#include "types.h"
|
2008-02-17 21:41:59 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
struct Peak {
|
|
|
|
float min;
|
|
|
|
float max;
|
2008-05-01 09:13:58 +02:00
|
|
|
|
|
|
|
float normalization_factor ( void ) const;
|
2008-02-17 00:12:23 +01:00
|
|
|
};
|
|
|
|
|
2008-05-11 16:24:38 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
class Audio_File;
|
2008-02-17 00:12:23 +01:00
|
|
|
|
|
|
|
class Peaks
|
|
|
|
{
|
|
|
|
|
2008-02-17 21:41:59 +01:00
|
|
|
struct peakdata {
|
|
|
|
|
2008-05-10 20:19:55 +02:00
|
|
|
nframes_t chunksize; /* should always be a power of 2 */
|
2008-02-17 00:12:23 +01:00
|
|
|
Peak data[];
|
2008-02-17 21:41:59 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
};
|
|
|
|
|
2008-02-17 21:41:59 +01:00
|
|
|
struct peakbuffer {
|
|
|
|
|
2008-03-27 06:58:31 +01:00
|
|
|
size_t size; /* total allocation size */
|
2008-05-10 20:19:55 +02:00
|
|
|
size_t len; /* number of peaks */
|
|
|
|
nframes_t offset; /* starting sample */
|
2008-02-17 21:41:59 +01:00
|
|
|
|
|
|
|
peakdata *buf;
|
|
|
|
|
|
|
|
peakbuffer ( )
|
|
|
|
{
|
|
|
|
size = len = 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-05-11 16:24:38 +02:00
|
|
|
class Streamer
|
|
|
|
{
|
|
|
|
FILE *_fp;
|
|
|
|
Peak *_peak;
|
|
|
|
int _chunksize;
|
|
|
|
int _channels;
|
|
|
|
int _index;
|
|
|
|
|
|
|
|
/* not permitted */
|
|
|
|
Streamer ( const Streamer &rhs );
|
|
|
|
const Streamer &operator= ( const Streamer &rhs );
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-05-12 00:48:19 +02:00
|
|
|
Streamer ( const char *filename, int channels, nframes_t chunksize );
|
2008-05-11 16:24:38 +02:00
|
|
|
~Streamer ( );
|
|
|
|
|
2008-05-12 04:01:51 +02:00
|
|
|
void write ( const sample_t *buf, nframes_t nframes );
|
2008-05-11 16:24:38 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class Builder
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
size_t last_block_pos;
|
|
|
|
const Peaks *_peaks;
|
|
|
|
|
|
|
|
void write_block_header ( nframes_t chunksize );
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
bool make_peaks_mipmap ( void );
|
|
|
|
bool make_peaks ( void );
|
|
|
|
|
|
|
|
Builder ( const Peaks *peaks );
|
|
|
|
};
|
|
|
|
|
2008-03-25 22:17:24 +01:00
|
|
|
static peakbuffer _peakbuf;
|
2008-02-17 04:32:31 +01:00
|
|
|
|
2008-02-22 09:19:20 +01:00
|
|
|
Audio_File *_clip;
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-03-07 00:21:57 +01:00
|
|
|
mutable float _fpp;
|
|
|
|
|
2008-05-19 05:01:09 +02:00
|
|
|
int read_peaks ( nframes_t s, int npeaks, nframes_t chunksize ) const;
|
2008-05-10 19:02:21 +02:00
|
|
|
int read_source_peaks ( Peak *peaks, nframes_t s, int npeaks, nframes_t chunksize ) const;
|
|
|
|
int read_source_peaks ( Peak *peaks, int npeaks, nframes_t chunksize ) const;
|
|
|
|
int read_peakfile_peaks ( Peak *peaks, nframes_t s, int npeaks, nframes_t chunksize ) const;
|
2008-02-17 04:32:31 +01:00
|
|
|
|
2008-05-11 16:24:38 +02:00
|
|
|
Streamer * volatile _peak_writer; /* exists when streaming peaks to disk */
|
2008-05-10 20:19:55 +02:00
|
|
|
|
|
|
|
/* not permitted */
|
|
|
|
Peaks ( const Peaks &rhs );
|
|
|
|
const Peaks &operator= ( const Peaks &rhs );
|
2008-02-22 19:40:51 +01:00
|
|
|
|
2008-05-10 19:02:21 +02:00
|
|
|
public:
|
2008-02-18 04:37:26 +01:00
|
|
|
|
2008-05-10 20:19:55 +02:00
|
|
|
static bool mipmapped_peakfiles;
|
2008-02-22 09:19:20 +01:00
|
|
|
|
2008-05-10 19:02:21 +02:00
|
|
|
static const int cache_minimum;
|
|
|
|
static const int cache_levels;
|
|
|
|
static const int cache_step;
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-02-22 19:40:51 +01:00
|
|
|
|
2008-05-10 20:19:55 +02:00
|
|
|
|
|
|
|
Peaks ( Audio_File *c );
|
|
|
|
~Peaks ( );
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-03-25 22:17:24 +01:00
|
|
|
Peak *peakbuf ( void ) const { return Peaks::_peakbuf.buf->data; }
|
2008-02-22 19:40:51 +01:00
|
|
|
void clip ( Audio_File *c ) { _clip = c; }
|
|
|
|
|
2008-04-17 17:19:04 +02:00
|
|
|
int fill_buffer ( float fpp, nframes_t s, nframes_t e ) const;
|
2008-02-17 21:41:59 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
void read ( int X, float *hi, float *lo ) const;
|
2008-05-11 19:18:51 +02:00
|
|
|
bool ready ( nframes_t s, int npeaks, nframes_t chunksize ) const;
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-05-11 03:10:16 +02:00
|
|
|
bool current ( void ) const;
|
2008-05-10 19:02:21 +02:00
|
|
|
bool make_peaks ( void ) const;
|
2008-05-11 03:40:43 +02:00
|
|
|
bool make_peaks_mipmap ( void ) const;
|
2008-02-17 03:36:17 +01:00
|
|
|
|
2008-05-10 20:19:55 +02:00
|
|
|
void prepare_for_writing ( void );
|
2008-05-11 03:10:16 +02:00
|
|
|
void finish_writing ( void );
|
2008-05-10 20:19:55 +02:00
|
|
|
void write ( sample_t *buf, nframes_t nframes );
|
2008-02-17 00:12:23 +01:00
|
|
|
};
|