Add one additional low frequency band to preecho detection
[platform/upstream/libvorbis.git] / lib / envelope.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
5  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
7  *                                                                  *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
9  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
10  *                                                                  *
11  ********************************************************************
12
13  function: PCM data envelope analysis and manipulation
14  last mod: $Id: envelope.h,v 1.23 2002/03/30 01:56:58 xiphmont Exp $
15
16  ********************************************************************/
17
18 #ifndef _V_ENVELOPE_
19 #define _V_ENVELOPE_
20
21 #include "mdct.h"
22
23 #define VE_PRE    16
24 #define VE_WIN    4
25 #define VE_POST   2
26 #define VE_AMP    (VE_PRE+VE_POST-1)
27
28 #define VE_BANDS  7
29 #define VE_NEARDC 15
30
31 #define VE_MINSTRETCH 2   /* a bit less than short block */
32 #define VE_MAXSTRETCH 31  /* one full block */
33
34 typedef struct {
35   float ampbuf[VE_AMP];
36   int   ampptr;
37
38   float nearDC[VE_NEARDC];
39   float nearDC_acc;
40   float nearDC_partialacc;
41   int   nearptr;
42
43   float markers[1024];
44 } envelope_filter_state;
45
46 typedef struct {
47   int begin;
48   int end;
49   float *window;
50   float total;
51 } envelope_band;
52
53 typedef struct {
54   int ch;
55   int winlength;
56   int searchstep;
57   float minenergy;
58
59   mdct_lookup  mdct;
60   float       *mdct_win;
61
62   envelope_band          band[VE_BANDS];
63   envelope_filter_state *filter;
64   int   stretch;
65
66   int                   *mark;
67
68   long storage;
69   long current;
70   long curmark;
71   long cursor;
72 } envelope_lookup;
73
74 extern void _ve_envelope_init(envelope_lookup *e,vorbis_info *vi);
75 extern void _ve_envelope_clear(envelope_lookup *e);
76 extern long _ve_envelope_search(vorbis_dsp_state *v);
77 extern void _ve_envelope_shift(envelope_lookup *e,long shift);
78 extern int  _ve_envelope_mark(vorbis_dsp_state *v);
79
80
81 #endif
82