1 
2 #ifndef __SCHRO_ANALYSIS_H__
3 #define __SCHRO_ANALYSIS_H__
4 
5 #include <schroedinger/schroencoder.h>
6 
7 SCHRO_BEGIN_DECLS
8 
9 #ifdef SCHRO_ENABLE_UNSTABLE_API
10 
11 void schro_encoder_frame_analyse (SchroEncoderFrame *frame);
12 void schro_encoder_frame_downsample (SchroEncoderFrame *frame);
13 void schro_encoder_frame_upsample (SchroEncoderFrame* frame);
14 void schro_frame_mean_squared_error (SchroFrame *a, SchroFrame *b, double *mse);
15 
16 #endif
17 
18 SCHRO_END_DECLS
19 
20 #endif
21