annotate libmpcodecs/ae_toolame.h @ 27637:5abf906c09c8
Fix infinite loop with spline, bug was introduced in r27612 by me.
author |
michael |
date |
Mon, 29 Sep 2008 01:08:01 +0000 |
parents |
4129c8cfa742 |
children |
bbb6ebec87a0 |
rev |
line source |
26029
|
1 #ifndef MPLAYER_AE_TOOLAME_H
|
|
2 #define MPLAYER_AE_TOOLAME_H
|
13425
|
3
|
15234
|
4 #include "ae.h"
|
13425
|
5 #include <toolame.h>
|
|
6
|
|
7 typedef struct {
|
|
8 toolame_options *toolame_ctx;
|
|
9 int channels, srate, bitrate;
|
15265
|
10 int vbr;
|
13425
|
11 int16_t left_pcm[1152], right_pcm[1152];
|
|
12 } mpae_toolame_ctx;
|
|
13
|
15234
|
14 int mpae_init_toolame(audio_encoder_t *encoder);
|
13425
|
15
|
26029
|
16 #endif /* MPLAYER_AE_TOOLAME_H */
|