亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? matrices.c

?? linux下將各類格式圖片轉換工具
?? C
?? 第 1 頁 / 共 2 頁
字號:
    */   for (row = wfa->basis_states; row <= last_row; row++)   {      unsigned count;			/* value in the current interval */            /*       *  Read label 0 element       */      if (isrange (*is_leaf++))		/* valid matrix index */      {	 count = high - ((high - low) >> *prob_ptr);	 if (code < count)	 {	    if (prob_ptr < last)	/* model update */	       prob_ptr++;	    /*	     *  Decode the MPS '0'	     */	    high = count - 1;	    RESCALE_INPUT_INTERVAL;	 }	 else	 {	    prob_ptr = ((prob_ptr - first) >> 1) + first; /* model update */	    /*	     *  Decode the LPS '1'	     */	    low = count;	    RESCALE_INPUT_INTERVAL;	    /*	     *  Restore the transition (weight = -1)	     */	    append_edge (row, 0, -1, 0, wfa);	    total++;	 }      }      /*       *  Read label 1 element       */      if (isrange (*is_leaf++)) /* valid matrix index */      {	 count = high - ((high - low) >> *prob_ptr);	 if (code < count)	 {	    if (prob_ptr < last)	       prob_ptr++;		/* model update */	    /*	     *  Decode the MPS '0'	     */	    high = count - 1;	    RESCALE_INPUT_INTERVAL;	 }	 else	 {	    prob_ptr = ((prob_ptr - first) >> 1) + first; /* model update */	    /*	     *  Decode the LPS '1'	     */	    low = count;	    RESCALE_INPUT_INTERVAL;	    /*	     *  Restore the transition (weight = -1)	     */	    append_edge (row, 0, -1, 1, wfa);	    total++;	 }      }   }   INPUT_BYTE_ALIGN (input);   Free (prob);      return total;}static unsignedchroma_decoding (wfa_t *wfa, bitfile_t *input)/* *  Read transition matrices of 'wfa' states which are part of the *  chroma channels Cb and Cr from stream 'input'. * *  Return value: *	number of non-zero matrix elements (WFA edges) * *  Side effects: *	'wfa->into' is filled with decoded values  */{   unsigned  domain;			/* current domain, counter */   unsigned  total = 0;			/* total number of chroma edges */   unsigned *prob_ptr;			/* pointer to current probability */   unsigned *last;			/* pointer to minimum probability */   unsigned *first;			/* pointer to maximum probability */   unsigned *new_prob_ptr;		/* ptr to probability of last domain */   unsigned *prob;			/* probability array */   u_word_t  high;			/* Start of the current code range */   u_word_t  low;			/* End of the current code range */   u_word_t  code;			/* The present input code value */   word_t   *y_domains;			/* domain images corresponding to Y */   int	     save_index;		/* YES: store current probabilty */   /*    *  Compute the asymmetric probability array    *  prob[] = { 1/2, 1/2, 1/4, 1/4, 1/4, 1/4,    *                     1/8, ... , 1/16, ..., 1/(MAXPROB+1)}    */   {      unsigned n;      unsigned index;			/* probability index */      unsigned exp;			/* current exponent */            prob = Calloc (1 << (MAX_PROB + 1), sizeof (unsigned));         for (index = 0, n = MIN_PROB; n <= MAX_PROB; n++)	 for (exp = 0; exp < 1U << n; exp++, index++)	    prob [index] = n;   }   high = HIGH;				/* 1.0 */   low  = LOW;				/* 0.0 */   code = get_bits (input, 16);   /*    *  Compute list of admitted domains    */   y_domains = compute_hits (wfa->basis_states,			     wfa->tree [wfa->tree [wfa->root_state][0]][0],			     wfa->wfainfo->chroma_max_states, wfa);      first = prob_ptr = new_prob_ptr = prob;   last  = first + 1020;   /*    *  First of all, read all matrix columns given in the list 'y_domains'    *  which note all admitted domains.    *  These matrix elements are stored with QAC (see column_0_decoding ()).    */   for (domain = 0; y_domains [domain] != -1; domain++)   {      unsigned 	row	= wfa->tree [wfa->tree [wfa->root_state][0]][0] + 1;      word_t   *is_leaf = wfa->tree [row];      prob_ptr   = new_prob_ptr;      save_index = YES;      for (; row < wfa->states; row++)      {	 unsigned count;		/* value in the current interval */	 /*	  *  Read label 0 element	  */	 if (isrange (*is_leaf++)) 	/* valid matrix index */	 {	    count = high - ((high - low) >> *prob_ptr);	    if (code < count)	    {	       if (prob_ptr < last)		  prob_ptr++;	       /*		*  Decode the MPS '0'		*/	       high = count - 1;	       RESCALE_INPUT_INTERVAL;	    }	    else	    {	       prob_ptr = ((prob_ptr - first) >> 1) + first;	       /*		*  Decode the LPS '1'		*/	       low = count;	       RESCALE_INPUT_INTERVAL;	       /*		*  Restore the transition (weight = -1)		*/	       append_edge (row, y_domains [domain], -1, 0, wfa);	       total++;	    }	 }	 /*	  *  Read label 1 element	  */	 if (isrange (*is_leaf++)) /* valid matrix index */	 {	    count = high - ((high - low) >> *prob_ptr);	    if (code < count)	    {	       if (prob_ptr < last)		  prob_ptr++;	       /*		*  Decode the MPS '0'		*/	       high = count - 1;	       RESCALE_INPUT_INTERVAL;	    }	    else	    {	       prob_ptr = ((prob_ptr - first) >> 1) + first;	       /*		*  Decode the LPS '1'		*/	       low = count;	       RESCALE_INPUT_INTERVAL;	       /*		*  Restore the transition (weight = -1)		*/	       append_edge (row, y_domains [domain], -1, 1, wfa);	       total++;	    }	 }	 if (save_index)	 {	    save_index 	 = NO;	    new_prob_ptr = prob_ptr;	 }      }   }   Free (y_domains);   compute_y_state (wfa->tree [wfa->tree [wfa->root_state][0]][1],		    wfa->tree [wfa->tree [wfa->root_state][0]][0], wfa);   compute_y_state (wfa->tree [wfa->tree [wfa->root_state][1]][0],		    wfa->tree [wfa->tree [wfa->root_state][0]][0], wfa);      first = prob_ptr = new_prob_ptr = prob;   /*    *  Decode the additional column which indicates whether there    *  are transitions to a state with same spatial coordinates    *  in the Y component.    *    *  Again, quasi arithmetic decoding is used for this task.    */   {      unsigned 	row;            for (row = wfa->tree [wfa->tree [wfa->root_state][0]][0] + 1;	   row < wfa->states; row++)      {	 int label;			/* current label */	 for (label = 0; label < MAXLABELS; label++)	 {	    u_word_t count = high - ((high - low) >> *prob_ptr);	    if (code < count)	    {	       if (prob_ptr < last)		  prob_ptr++;	       /*		*  Decode the MPS '0'		*/	       high = count - 1;	       RESCALE_INPUT_INTERVAL;	    }	    else	    {	       prob_ptr = ((prob_ptr - first) >> 1) + first;	       /*		*  Decode the LPS '1'		*/	       low = count;	       RESCALE_INPUT_INTERVAL;	       /*		*  Restore the transition (weight = -1)		*/	       append_edge (row, wfa->y_state [row][label], -1, label, wfa);	       total++;	    }	 }      }   }   INPUT_BYTE_ALIGN (input);   Free (prob);   return total;}static voidcompute_y_state (int state, int y_state, wfa_t *wfa)/* *  Compute the 'wfa->y_state' array which denotes those states of *  the Y band that have the same spatial coordinates as the corresponding *  states of the Cb and Cr bands. *  The current root of the Y tree is given by 'y_state'. *  The current root of the tree of the chroma channel is given by 'state'. * *  No return value. * *  Side effects: *	'wfa->y_state' is filled with the generated tree structure. */{   unsigned label;      for (label = 0; label < MAXLABELS; label++)      if (isrange (y_state))	 wfa->y_state [state][label] = RANGE;      else      {	 wfa->y_state [state][label] = wfa->tree [y_state][label];	 if (!isrange (wfa->tree [state][label]))	    compute_y_state (wfa->tree [state][label],			     wfa->y_state [state][label], wfa);      }      }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区在线观看| 国产成a人无v码亚洲福利| 狠狠色狠狠色综合系列| 99久久婷婷国产综合精品 | 国产高清成人在线| 91久久精品日日躁夜夜躁欧美| 欧美成人艳星乳罩| 亚洲一区在线视频观看| 国产成人av影院| 欧美一级欧美三级在线观看| 一区二区三区在线免费播放| 国产91丝袜在线播放| 日韩一级成人av| 亚洲第一福利一区| 91视频观看视频| 国产精品天干天干在观线| 精一区二区三区| 欧美一卡在线观看| 无吗不卡中文字幕| 欧美性猛交xxxx乱大交退制版| 国产精品三级av在线播放| 国产麻豆视频一区二区| 欧美一区二区久久久| 天堂成人免费av电影一区| 91色乱码一区二区三区| 国产精品久久久久婷婷| 国产精品一二三四五| xvideos.蜜桃一区二区| 九一九一国产精品| 精品久久久久久综合日本欧美| 激情丁香综合五月| 91精品国产综合久久久久久久| 一个色在线综合| 91福利社在线观看| 亚洲无线码一区二区三区| 欧美午夜在线观看| 午夜久久久影院| 欧美精品777| 亚洲1区2区3区4区| 91麻豆精品国产91| 日韩不卡一区二区三区| 91.麻豆视频| 免费观看在线色综合| 久久综合99re88久久爱| 国产乱码精品一区二区三区av| 日本一区二区免费在线观看视频| 国产成人小视频| 成人免费视频在线观看| 色婷婷综合久久久中文一区二区 | 国产精品久久久久永久免费观看| 高清av一区二区| **欧美大码日韩| 91久久香蕉国产日韩欧美9色| 一二三区精品视频| 91精品国产综合久久精品图片| 毛片一区二区三区| 久久亚洲私人国产精品va媚药| 欧美精品乱码久久久久久| 日韩在线一区二区三区| 日韩你懂的在线播放| 成人一级片在线观看| 一区二区三区免费观看| 精品少妇一区二区三区在线视频 | 青青草原综合久久大伊人精品优势| 日韩视频免费直播| 国产成人精品影视| 亚洲自拍偷拍九九九| 精品成人一区二区| 色综合久久久久综合体| 免费日本视频一区| 亚洲天堂a在线| 91精品国产欧美日韩| 成人激情动漫在线观看| 午夜精品福利一区二区蜜股av| 久久精品亚洲一区二区三区浴池| 99久久99久久久精品齐齐| 免费一级欧美片在线观看| 中文字幕制服丝袜一区二区三区| 7777精品伊人久久久大香线蕉的| 高清av一区二区| 蜜桃视频在线观看一区| 又紧又大又爽精品一区二区| 亚洲精品一区在线观看| 欧美午夜片在线看| 成人免费视频视频在线观看免费 | 另类综合日韩欧美亚洲| 亚洲免费在线视频一区 二区| 日韩欧美一区电影| 在线观看91精品国产入口| 国产**成人网毛片九色| 99精品视频一区二区三区| 日韩经典中文字幕一区| 亚洲精品乱码久久久久久 | 国产精品1024| 日韩不卡一区二区| 亚洲永久精品国产| 成人欧美一区二区三区小说| 久久影音资源网| 日韩免费视频一区| 欧美日本免费一区二区三区| 91蜜桃免费观看视频| 国产成人av电影在线播放| 久久精品99国产国产精| 日韩精品电影一区亚洲| 亚洲电影你懂得| 一区二区三区在线观看网站| 国产精品三级视频| 亚洲国产高清aⅴ视频| 精品国产伦一区二区三区观看方式| 欧美美女一区二区在线观看| 色呦呦国产精品| 色婷婷亚洲综合| 99精品久久只有精品| av成人免费在线| 成人免费av在线| 不卡电影免费在线播放一区| 成人手机电影网| 99久久精品国产导航| 一本久道久久综合中文字幕| 色综合久久天天| 欧美日韩中文字幕精品| 精品视频色一区| 4438x成人网最大色成网站| 337p亚洲精品色噜噜噜| 日韩午夜激情av| 精品成人一区二区三区四区| 欧美精品一区二区三区蜜臀| 久久久久国产精品人| 国产日本一区二区| 中文字幕一区二区三区不卡| 亚洲狼人国产精品| 亚洲h动漫在线| 久久激情五月婷婷| 国产福利一区在线| 96av麻豆蜜桃一区二区| 欧美三级韩国三级日本一级| 日韩欧美亚洲一区二区| 久久精品无码一区二区三区| 中文字幕欧美日本乱码一线二线| 自拍偷自拍亚洲精品播放| 亚洲一区二区综合| 精品午夜一区二区三区在线观看| 国产成人午夜高潮毛片| 一本一道综合狠狠老| 欧美一区二区福利在线| 国产亚洲精品久| 一区二区三区电影在线播| 麻豆精品视频在线| 91在线码无精品| 制服丝袜av成人在线看| 国产欧美精品一区二区色综合朱莉 | 91电影在线观看| 欧美一区二区视频观看视频| 国产日本欧洲亚洲| 亚洲成人动漫av| 国产成人精品免费在线| 欧美日韩另类一区| 久久久精品日韩欧美| 一区2区3区在线看| 国产在线精品一区二区三区不卡| 91蜜桃视频在线| 久久久亚洲精品石原莉奈| 亚洲自拍偷拍图区| 成人午夜电影小说| 91精品国产91久久综合桃花| 亚洲三级电影全部在线观看高清| 精品在线免费视频| 欧美色图一区二区三区| 国产精品色哟哟| 久久精品国产99| 欧美三级欧美一级| 国产精品不卡一区二区三区| 久久97超碰色| 欧美剧情电影在线观看完整版免费励志电影 | 成人a区在线观看| 欧美一区二区三区日韩| 一区二区三区高清在线| 成人黄色在线网站| 久久色在线视频| 毛片av一区二区| 欧美人与z0zoxxxx视频| 一区二区三区91| 91丨porny丨户外露出| 久久精品人人做| 激情综合亚洲精品| 欧美精品 国产精品| 亚洲一卡二卡三卡四卡| 91亚洲大成网污www| 国产精品无遮挡| 国产成人午夜高潮毛片| 久久蜜桃av一区精品变态类天堂 | 国产精品欧美经典| 国产精品一级在线| 久久久亚洲精品一区二区三区| 麻豆一区二区三| 精品少妇一区二区三区视频免付费 | 国产三级一区二区| 国产乱码字幕精品高清av| 欧美一区二区三区啪啪| 免费在线观看视频一区|