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

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

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