repo.or.cz
/
mplayer
/
greg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use proper length specifiers in mp_msg calls, fixes the warnings:
[mplayer/greg.git]
/
libmpcodecs
/
ae_toolame.h
blob
30000a05ba969f4da330880f4338876c8204b0ea
1
#ifndef MPAE_TOOLAME_H
2
#define MPAE_TOOLAME_H
3
4
#include
"ae.h"
5
#include <toolame.h>
6
7
typedef
struct
{
8
toolame_options
*
toolame_ctx
;
9
int
channels
,
srate
,
bitrate
;
10
int
vbr
;
11
int16_t
left_pcm
[
1152
],
right_pcm
[
1152
];
12
}
mpae_toolame_ctx
;
13
14
int
mpae_init_toolame
(
audio_encoder_t
*
encoder
);
15
16
#endif