Mercurial > mplayer.hg
annotate libmpcodecs/ae_toolame.h @ 25918:35698e5aa40c
Implement keepaspect for Windows OpenGL vos.
author | reimar |
---|---|
date | Sat, 02 Feb 2008 17:22:07 +0000 |
parents | 246221f7ba2e |
children | 4129c8cfa742 |
rev | line source |
---|---|
25869
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
1 #ifndef AE_TOOLAME_H |
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
2 #define 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 |
25869
246221f7ba2e
Consistently use uppercase filename as multiple inclusion guard.
diego
parents:
25535
diff
changeset
|
16 #endif /* AE_TOOLAME_H */ |