annotate libmpcodecs/ae_toolame.h @ 20799:7e2bc0167fd1
r20657: (does not apply)
r20658: (cosmetics) Unify and clarify blank lines usage
r20682: (does not apply)
r20683: mention :tsaf on every instance of -mpegopts format=dvd
r20699: (does not apply)
r20700: A bunch of missing <systemitem class="library"> tags
r20701: Don't break a paragraph in a middle of a thought
r20702: (does not apply)
r20703: Better wording, especially if hyperlinks are not visible
r20704: Better URL markup
r20705: Unify ./configure script handling
r20739: Remove remnants of long-gone libfame.
author |
kraymer |
date |
Thu, 09 Nov 2006 15:05:51 +0000 |
parents |
92772475ed8d |
children |
3baf6a2283da |
rev |
line source |
13425
|
1 #ifndef MPAE_TOOLAME_H
|
|
2 #define MPAE_TOOLAME_H
|
|
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
|
|
16 #endif
|