Example #1
0
                    public subbandCQI_r11_Type Decode(BitArrayInputStream input)
                    {
                        subbandCQI_r11_Type type = new subbandCQI_r11_Type();

                        type.InitDefaults();
                        type.k = input.readBits(2) + 1;
                        int nBits = 1;

                        type.periodicityFactor_r11 = (periodicityFactor_r11_Enum)input.readBits(nBits);
                        return(type);
                    }
Example #2
0
 public subbandCQI_r11_Type Decode(BitArrayInputStream input)
 {
     subbandCQI_r11_Type type = new subbandCQI_r11_Type();
     type.InitDefaults();
     type.k = input.readBits(2) + 1;
     int nBits = 1;
     type.periodicityFactor_r11 = (periodicityFactor_r11_Enum)input.readBits(nBits);
     return type;
 }