You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
65 lines
2.3 KiB
/*****************************************************************************
|
|
* window.h : Header for FFT window routines
|
|
*****************************************************************************
|
|
* Copyright (C) 2014 Ronald Wright
|
|
*
|
|
* Author: Ronald Wright <logiconcepts819@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifndef VLC_VISUAL_WINDOW_H_
|
|
#define VLC_VISUAL_WINDOW_H_
|
|
|
|
#include <vlc_common.h>
|
|
|
|
/* Window type enum */
|
|
enum _enum_window_type { NONE, HANN, FLATTOP, BLACKMANHARRIS, KAISER };
|
|
|
|
/* Window context structure */
|
|
struct _struct_window_context {
|
|
|
|
/* Storage for window function values */
|
|
float * pf_window_table;
|
|
|
|
/* Buffer size for the window */
|
|
int i_buffer_size;
|
|
};
|
|
|
|
typedef enum _enum_window_type window_type;
|
|
|
|
/* Window parameter structure */
|
|
struct _struct_window_param {
|
|
|
|
/* Window type */
|
|
window_type wind_type;
|
|
|
|
/* Kaiser window parameter */
|
|
float f_kaiser_alpha;
|
|
};
|
|
|
|
/* Prototypes for the window function */
|
|
typedef struct _struct_window_context window_context;
|
|
typedef struct _struct_window_param window_param;
|
|
void window_get_param( vlc_object_t * p_aout, window_param * p_param );
|
|
bool window_init( int i_buffer_size, window_param * p_param,
|
|
window_context * p_ctx );
|
|
void window_scale_in_place( int16_t * p_buffer, window_context * p_ctx );
|
|
void window_close( window_context * p_ctx );
|
|
|
|
/* Macro for defining a new window context */
|
|
#define DEFINE_WIND_CONTEXT(name) window_context name = {NULL, 0}
|
|
|
|
#endif /* include-guard */
|
|
|