Convert tabs to spaces in the opus and celt code.
Also reformat some, but by no means all, of the opus code for line length and three-character indents.
This commit is contained in:
parent
4923f3f80e
commit
da025d5632
10 changed files with 629 additions and 595 deletions
|
@ -135,14 +135,14 @@ static int validate_encoder_layout(const ChannelLayout *layout)
|
|||
|
||||
int opus_multistream_encoder_get_size(int nb_streams, int nb_coupled_streams)
|
||||
{
|
||||
int coupled_size;
|
||||
int mono_size;
|
||||
int coupled_size;
|
||||
int mono_size;
|
||||
|
||||
coupled_size = opus_encoder_get_size(2);
|
||||
mono_size = opus_encoder_get_size(1);
|
||||
return align(sizeof(OpusMSEncoder))
|
||||
+ nb_coupled_streams * align(coupled_size)
|
||||
+ (nb_streams-nb_coupled_streams) * align(mono_size);
|
||||
coupled_size = opus_encoder_get_size(2);
|
||||
mono_size = opus_encoder_get_size(1);
|
||||
return align(sizeof(OpusMSEncoder))
|
||||
+ nb_coupled_streams * align(coupled_size)
|
||||
+ (nb_streams-nb_coupled_streams) * align(mono_size);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue