Changeset 3633:33a6a1a59939 in roaraudio for include/libroardsp


Ignore:
Timestamp:
03/11/10 23:21:59 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

code for multi channel RMS (currently only 1 and 2 channels)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/rms.h

    r3517 r3633  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009-2010 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
     
    4343int64_t roar_rms2_1_32 (int32_t * data, size_t samples); 
    4444 
     45int roar_rms2_1_8_2    (int8_t  * data, size_t samples, int64_t * rms); 
     46int roar_rms2_1_16_2   (int16_t * data, size_t samples, int64_t * rms); 
     47int roar_rms2_1_32_2   (int32_t * data, size_t samples, int64_t * rms); 
     48 
     49int roar_rms2_1_8_n    (int8_t  * data, size_t samples, int64_t * rms, size_t n); 
     50int roar_rms2_1_16_n   (int16_t * data, size_t samples, int64_t * rms, size_t n); 
     51int roar_rms2_1_32_n   (int32_t * data, size_t samples, int64_t * rms, size_t n); 
     52 
    4553#endif 
    4654 
Note: See TracChangeset for help on using the changeset viewer.