Changing the encoder API to add the frame size

This commit is contained in:
Jean-Marc Valin 2010-05-06 22:11:48 -04:00
parent fbd82eb8f4
commit 017fa85775
8 changed files with 110 additions and 72 deletions

View file

@ -108,14 +108,6 @@ struct CELTMode {
celt_uint32 marker_end;
};
static inline int FULL_FRAME(const CELTMode *m)
{
int i=0;
while (1<<i < m->nbShortMdcts)
i++;
return i;
}
int check_mode(const CELTMode *mode);
#endif