annotate libmpcodecs/ae_twolame.h @ 27144:76ddca5027c3
r25179: Add missing forced linebreak, slight wording improvement.
r25189: Add an example for play DTS-CD with passsthrough.
r25194: -identify shows chapters times when playing dvd streams
r25314: cleanup and conformation of values description for -ass-hinting
r25315: minor spelling/grammar fixes
r25343: Fix all current known multi-channel wrong order problems [...]
r25379: Fix libass to support -nofontconfig.
author |
kraymer |
date |
Mon, 30 Jun 2008 19:35:27 +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 */
|