[soc]: r3833 - qcelp/qcelpdata.h
Author: reynaldo Date: Sat Nov 15 16:32:02 2008 New Revision: 3833 Log: Patch by Kenan. Reorders rate enum Modified: qcelp/qcelpdata.h Modified: qcelp/qcelpdata.h ============================================================================== --- qcelp/qcelpdata.h (original) +++ qcelp/qcelpdata.h Sat Nov 15 16:32:02 2008 @@ -30,16 +30,16 @@ typedef enum { - RATE_FULL = 0, - RATE_HALF = 1, - RATE_QUARTER= 2, - RATE_OCTAVE = 3, - I_F_Q, /*!< insufficient frame quality */ + RATE_UNKNOWN = -2, + I_F_Q, /*!< insufficient frame quality */ BLANK, - RATE_UNKNOWN + RATE_OCTAVE, + RATE_QUARTER, + RATE_HALF, + RATE_FULL } qcelp_packet_rate; -static const uint16_t qcelp_bits_per_rate[]={266,124,54,20}; +static const uint16_t qcelp_bits_per_rate[]={0, 20, 54, 124, 266}; static const float qcelp_hammsinc_table[]={-0.006822, 0.041249,-0.143459, 0.588863, 0.588863,-0.143459, 0.041249,-0.006822};
On Sat, Nov 15, 2008 at 04:32:02PM +0100, reynaldo wrote:
Log: Patch by Kenan. Reorders rate enum
This commit message is backwards. The substance of the change is more important than the contributor. Diego
Hello Diego Diego Biurrun wrote:
This commit message is backwards. The substance of the change is more important than the contributor.
Fixed, Thanks. Bests -- Reynaldo
participants (3)
-
Diego Biurrun -
reynaldo -
Reynaldo H. Verdejo Pinochet