annotate libmpcodecs/ae_twolame.h @ 29896:ac3e6e27f2c7
Use calloc to allocate a rather large (currently 32k) array instead of
putting it on the stack, performance should not matter much here.
author |
reimar |
date |
Fri, 20 Nov 2009 23:36:16 +0000 |
parents |
4129c8cfa742 |
children |
bbb6ebec87a0 |
rev |
line source |
26029
|
1 #ifndef MPLAYER_AE_TWOLAME_H
|
|
2 #define MPLAYER_AE_TWOLAME_H
|
15359
|
3
|
|
4 #include "ae.h"
|
|
5 #include <twolame.h>
|
|
6
|
|
7 typedef struct {
|
|
8 twolame_options *twolame_ctx;
|
|
9 int vbr;
|
|
10 } mpae_twolame_ctx;
|
|
11
|
|
12 int mpae_init_twolame(audio_encoder_t *encoder);
|
|
13
|
26029
|
14 #endif /* MPLAYER_AE_TWOLAME_H */
|