libeplayer3: run through indent, no binary change

This commit is contained in:
martii
2013-11-21 19:40:47 +01:00
parent 2c2ca45360
commit 2d652aab01
48 changed files with 6645 additions and 5857 deletions

View File

@@ -22,36 +22,36 @@
#define AAC_HEADER_LENGTH 7
static inline int aac_get_sample_rate_index (uint32_t sample_rate)
static inline int aac_get_sample_rate_index(uint32_t sample_rate)
{
if (96000 <= sample_rate)
return 0;
return 0;
else if (88200 <= sample_rate)
return 1;
return 1;
else if (64000 <= sample_rate)
return 2;
return 2;
else if (48000 <= sample_rate)
return 3;
return 3;
else if (44100 <= sample_rate)
return 4;
return 4;
else if (32000 <= sample_rate)
return 5;
return 5;
else if (24000 <= sample_rate)
return 6;
return 6;
else if (22050 <= sample_rate)
return 7;
return 7;
else if (16000 <= sample_rate)
return 8;
return 8;
else if (12000 <= sample_rate)
return 9;
return 9;
else if (11025 <= sample_rate)
return 10;
return 10;
else if (8000 <= sample_rate)
return 11;
return 11;
else if (7350 <= sample_rate)
return 12;
return 12;
else
return 13;
return 13;
}
#endif