Mercurial > mplayer.hg
annotate libmpcodecs/ae_toolame.h @ 25567:ca62d466a9fc
Fix property audio_delay bug when step up/down with arg value NULL.
Original patched by Davide Capodaglio <davidecapod A inwind P it>.
author | ulion |
---|---|
date | Sat, 05 Jan 2008 01:40:36 +0000 |
parents | 3baf6a2283da |
children | 246221f7ba2e |
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 |
25535
3baf6a2283da
Add explanatory comments to the #endif part of multiple inclusion guards.
diego
parents:
15265
diff
changeset
|
16 #endif /* MPAE_TOOLAME_H */ |