cosmetics: K&R coding style, prettyprinting

Originally committed as revision 19564 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2009-08-02 13:35:42 +00:00
parent da136c7e05
commit b25a881851
2 changed files with 31 additions and 31 deletions

View File

@@ -40,7 +40,7 @@ static const uint16_t critical_freq[] = {
/** /**
* @name huffman tables for DPCM-coded scale factors * @name Huffman tables for DPCM-coded scale factors
* @{ * @{
*/ */
#define HUFF_SCALE_SIZE 121 #define HUFF_SCALE_SIZE 121
@@ -86,7 +86,7 @@ static const uint8_t scale_huffbits[HUFF_SCALE_SIZE] = {
/** /**
* @name huffman, run and level tables for run level coded scale factors * @name Huffman, run and level tables for runlevel-coded scale factors
* @{ * @{
*/ */
#define HUFF_SCALE_RL_SIZE 120 #define HUFF_SCALE_RL_SIZE 120
@@ -157,7 +157,7 @@ static const uint8_t scale_rl_level[HUFF_SCALE_RL_SIZE] = {
/** /**
* @name huffman, run and level codes for run level coded coefficients * @name Huffman, run and level codes for runlevel-coded coefficients
* @{ * @{
*/ */
#define HUFF_COEF0_SIZE 272 #define HUFF_COEF0_SIZE 272
@@ -410,7 +410,7 @@ static const uint16_t coef1_level[HUFF_COEF1_SIZE] = {
/** /**
* @name huffman and vector lookup tables for vector-coded coefficients * @name Huffman and vector lookup tables for vector-coded coefficients
* @{ * @{
*/ */
#define HUFF_VEC4_SIZE 127 #define HUFF_VEC4_SIZE 127