コード例 #1
0
        private void ctrSelectCodecs_Load(object sender, EventArgs e)
        {
            ctrSelectColumns ctr = new ctrSelectColumns(pjsipStackProxy.Instance.getAllCodecs(), PhoneConfig.Instance.CodecList);

            ctr.Dock = DockStyle.Fill;
            this.Controls.Add(ctr);
        }
コード例 #2
0
        public bool ApplyOptions()
        {
            try
            {
                ctrSelectColumns con = (ctrSelectColumns)this.Controls[typeof(ctrSelectColumns).Name];
                con.ApplyOption();
                PhoneConfig.Instance.CodecList = con.enabledItems;

                foreach (string item in con.disableItems)
                {
                    pjsipStackProxy.Instance.setCodecPriority(item, 0);
                }
                int i = 0;
                foreach (string item in PhoneConfig.Instance.CodecList)
                {
                    pjsipStackProxy.Instance.setCodecPriority(item, 128 - i);
                    i++;
                }
                return(true);
            }
            catch { return(false); }
        }