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

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

?? jpeg_encoder.v

?? fpga based jpge 壓縮算法
?? V
?? 第 1 頁 / 共 2 頁
字號:
/////////////////////////////////////////////////////////////////////////                                                             ////////  Discrete Cosine Transform Testbench (ITU-T.81 & ITU-T.83)  ////////                                                             ////////  Author: Richard Herveille                                  ////////          richard@asics.ws                                   ////////          www.asics.ws                                       ////////                                                             /////////////////////////////////////////////////////////////////////////////                                                             //////// Copyright (C) 2002 Richard Herveille                        ////////                    richard@asics.ws                         ////////                                                             //////// This source file may be used and distributed without        //////// restriction provided that this copyright statement is not   //////// removed from the file and that any derivative work contains //////// the original copyright notice and the associated disclaimer.////////                                                             ////////     THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY     //////// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED   //////// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS   //////// FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR      //////// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,         //////// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES    //////// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE   //////// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR        //////// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF  //////// LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT  //////// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  //////// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE         //////// POSSIBILITY OF SUCH DAMAGE.                                 ////////                                                             ///////////////////////////////////////////////////////////////////////////  CVS Log////  $Id: bench_top.v,v 1.1 2002/10/23 09:07:01 rherveille Exp $////  $Date: 2002/10/23 09:07:01 $//  $Revision: 1.1 $//  $Author: rherveille $//  $Locker:  $//  $State: Exp $//// Change History://               $Log: bench_top.v,v $//               Revision 1.1  2002/10/23 09:07:01  rherveille//               Improved many files.//               Fixed some bugs in Run-Length-Encoder.//               Removed dependency on ud_cnt and ro_cnt.//               Started (Motion)JPEG hardware encoder project.////`include "timescale.v"module bench_top();	////////////////////////////////////////////////////////////////////	//                                                                //	// ITU-T.81, ITU-T.83 & Coefficient resolution notes              //	//                                                                //	////////////////////////////////////////////////////////////////////	//                                                                //	// Worst case error (all input values -128) is                    //	// zero (i.e. no errors) when using 15bit coefficients            //	//                                                                //	// Using less bits for the coefficients produces a biterror       //	// approx. equal to (15 - used_coefficient-bits).                 //	// e.g. 14bit coefficients, errors in dout-bit[0] only            //	//      13bit coefficients, errors in dout-bits[1:0]              //	//      12bit coefficients, errors in dout-bits[2:0] etc.         //	// Tests with real non-continous tone image data have shown that  //	// even when using 13bit coefficients errors remain in the lsb    //	// only (i.e. FDCT dout-bit[0])                                   //	//                                                                //	// The amount of coefficient-bits needed is dependent on the      //	// desired quality.                                               //	// The JPEG-standard compliance specs.(ITU-T.83) prescribe        //	// that the output of the combined DCT AND Quantization unit      //	// shall not exceed 1 for the desired quality.                    //	//                                                                //	// This means for high quantization levels, lesser bits           //	// for the DCT unit can be used.                                  //	//                                                                //	// Looking at the recommended "quantization tables for generic    //	// compliance testing of DCT-based processes" (ITU-T.83 annex B)  //	// it can be noticed that relatively large quantization values    //	// are being used. Errors in the lower-order bits should          //	// therefore not be visible.                                      //	// Tests with real continuous and non-continous tone image data   //	// have shown that when using the example quantization tables     //	// from ITU-T.81 annex K, 10bits coefficients are sufficient to   //	// comply to the ITU-T.83 specs. Compliance tests have been met   //	// using as little as 9bit coefficients.                          //	// For certain applications some of the lower-order bits could    //	// actually be discarded. When looking at the luminance and       //	// chrominance example quantization tables (ITU-T.81 annex K)     //	// it can be seen that the smallest quantization value is ten     //	// (qnt_val_min = 10). This means that the lower 2bits can be     //	// discarded (set to zero '0') without having any effect on the   //	// final result. In this example 11 bit or 12 bit coefficients    //	// would be sufficient.                                           //	//                                                                //	////////////////////////////////////////////////////////////////////	parameter coef_width = 13; //9;	// amount of 8x8 data packets to use for tests (current max. = 4)	parameter input_lists_start = 1;	parameter input_lists_end = 4;	//	// internal wires	//	reg clk;	reg rst;	reg dstrb;	reg [7:0] din;	wire den;	wire [10:0] dout;	wire [ 3:0] size, rlen;	wire [11:0] amp;	reg [ 7:0] input_list  [(input_lists_end*64) -1:0];	reg [7:0] qnt_list [63:0];	wire [5:0] qnt_cnt;	reg [7:0] qnt_val;	integer x,y;	integer n, list_cnt;	//	// JPEG Encoder unit	//	jpeg_encoder #(coef_width)	jpeg_enc (		.clk(clk),		.ena(1'b1),		.rst(rst),		.dstrb(dstrb),		.din(din),		.qnt_val(qnt_val),		.qnt_cnt(qnt_cnt),		.size(size),		.rlen(rlen),		.amp(amp),//		.dout(dout),		.douten(den)	);	// generate Quantization memory	always @(posedge clk)	  qnt_val <= #1 qnt_list[qnt_cnt];	// hookup checker-modules	fdct_qnr_checker #(input_lists_start, input_lists_end)	output_check (		.clk(clk),		.rst(rst),		.dstrb(jpeg_enc.dqnr_doe),		.din(jpeg_enc.qnr_dout)	);	//	// testbench body	//	// generate clock	always #2.5 clk <= ~clk;	// initial statements	initial	begin	// waves statement	`ifdef WAVES	   $shm_open("waves");	   $shm_probe("AS",bench_top,"AS");	   $display("INFO: Signal dump enabled ...\n\n");	`endif		//		// fill input-table		//		// input list 1		input_list[00] <= 8'd139;		input_list[01] <= 8'd144;		input_list[02] <= 8'd149;		input_list[03] <= 8'd153;		input_list[04] <= 8'd155;		input_list[05] <= 8'd155;		input_list[06] <= 8'd155;		input_list[07] <= 8'd155;		input_list[08] <= 8'd144;		input_list[09] <= 8'd151;		input_list[10] <= 8'd153;		input_list[11] <= 8'd156;		input_list[12] <= 8'd159;		input_list[13] <= 8'd156;		input_list[14] <= 8'd156;		input_list[15] <= 8'd156;		input_list[16] <= 8'd150;		input_list[17] <= 8'd155;		input_list[18] <= 8'd160;		input_list[19] <= 8'd163;		input_list[20] <= 8'd158;		input_list[21] <= 8'd156;		input_list[22] <= 8'd156;		input_list[23] <= 8'd156;		input_list[24] <= 8'd159;		input_list[25] <= 8'd161;		input_list[26] <= 8'd162;		input_list[27] <= 8'd160;		input_list[28] <= 8'd160;		input_list[29] <= 8'd159;		input_list[30] <= 8'd159;		input_list[31] <= 8'd159;		input_list[32] <= 8'd159;		input_list[33] <= 8'd160;		input_list[34] <= 8'd161;		input_list[35] <= 8'd162;		input_list[36] <= 8'd162;		input_list[37] <= 8'd155;		input_list[38] <= 8'd155;		input_list[39] <= 8'd155;		input_list[40] <= 8'd161;		input_list[41] <= 8'd161;		input_list[42] <= 8'd161;		input_list[43] <= 8'd161;		input_list[44] <= 8'd160;		input_list[45] <= 8'd157;		input_list[46] <= 8'd157;		input_list[47] <= 8'd157;		input_list[48] <= 8'd162;		input_list[49] <= 8'd162;		input_list[50] <= 8'd161;		input_list[51] <= 8'd163;		input_list[52] <= 8'd162;		input_list[53] <= 8'd157;		input_list[54] <= 8'd157;		input_list[55] <= 8'd157;		input_list[56] <= 8'd162;		input_list[57] <= 8'd162;		input_list[58] <= 8'd161;		input_list[59] <= 8'd161;		input_list[60] <= 8'd163;		input_list[61] <= 8'd158;		input_list[62] <= 8'd158;		input_list[63] <= 8'd158;		// input list 2		input_list[064] <= 8'd0;		input_list[065] <= 8'd0;		input_list[066] <= 8'd0;		input_list[067] <= 8'd0;		input_list[068] <= 8'd0;		input_list[069] <= 8'd0;		input_list[070] <= 8'd0;		input_list[071] <= 8'd0;		input_list[072] <= 8'd0;		input_list[073] <= 8'd0;		input_list[074] <= 8'd0;		input_list[075] <= 8'd0;		input_list[076] <= 8'd0;		input_list[077] <= 8'd0;		input_list[078] <= 8'd0;		input_list[079] <= 8'd0;		input_list[080] <= 8'd0;		input_list[081] <= 8'd0;		input_list[082] <= 8'd0;		input_list[083] <= 8'd0;		input_list[084] <= 8'd0;		input_list[085] <= 8'd0;		input_list[086] <= 8'd0;		input_list[087] <= 8'd0;		input_list[088] <= 8'd0;		input_list[089] <= 8'd0;		input_list[090] <= 8'd0;		input_list[091] <= 8'd0;		input_list[092] <= 8'd0;		input_list[093] <= 8'd0;		input_list[094] <= 8'd0;		input_list[095] <= 8'd0;		input_list[096] <= 8'd0;		input_list[097] <= 8'd0;		input_list[098] <= 8'd0;		input_list[099] <= 8'd0;		input_list[100] <= 8'd0;		input_list[101] <= 8'd0;		input_list[102] <= 8'd0;		input_list[103] <= 8'd0;		input_list[104] <= 8'd0;		input_list[105] <= 8'd0;		input_list[106] <= 8'd0;		input_list[107] <= 8'd0;		input_list[108] <= 8'd0;		input_list[109] <= 8'd0;		input_list[110] <= 8'd0;		input_list[111] <= 8'd0;		input_list[112] <= 8'd0;		input_list[113] <= 8'd0;		input_list[114] <= 8'd0;		input_list[115] <= 8'd0;		input_list[116] <= 8'd0;		input_list[117] <= 8'd0;		input_list[118] <= 8'd0;		input_list[119] <= 8'd0;		input_list[120] <= 8'd0;		input_list[121] <= 8'd0;		input_list[122] <= 8'd0;		input_list[123] <= 8'd0;		input_list[124] <= 8'd0;		input_list[125] <= 8'd0;		input_list[126] <= 8'd0;		input_list[127] <= 8'd0;		// input list 3		input_list[128] <= 8'd70;		input_list[129] <= 8'd72;		input_list[130] <= 8'd70;		input_list[131] <= 8'd70;		input_list[132] <= 8'd72;		input_list[133] <= 8'd68;		input_list[134] <= 8'd68;		input_list[135] <= 8'd64;		input_list[136] <= 8'd103;		input_list[137] <= 8'd101;		input_list[138] <= 8'd103;		input_list[139] <= 8'd100;		input_list[140] <= 8'd99;		input_list[141] <= 8'd97;		input_list[142] <= 8'd94;		input_list[143] <= 8'd94;		input_list[144] <= 8'd132;		input_list[145] <= 8'd132;		input_list[146] <= 8'd132;		input_list[147] <= 8'd130;		input_list[148] <= 8'd129;		input_list[149] <= 8'd129;		input_list[150] <= 8'd125;		input_list[151] <= 8'd121;		input_list[152] <= 8'd157;		input_list[153] <= 8'd157;		input_list[154] <= 8'd155;		input_list[155] <= 8'd154;		input_list[156] <= 8'd153;		input_list[157] <= 8'd150;		input_list[158] <= 8'd148;		input_list[159] <= 8'd145;		input_list[160] <= 8'd168;		input_list[161] <= 8'd163;		input_list[162] <= 8'd164;		input_list[163] <= 8'd162;		input_list[164] <= 8'd163;		input_list[165] <= 8'd161;		input_list[166] <= 8'd161;		input_list[167] <= 8'd156;		input_list[168] <= 8'd172;		input_list[169] <= 8'd170;		input_list[170] <= 8'd165;		input_list[171] <= 8'd166;		input_list[172] <= 8'd163;		input_list[173] <= 8'd163;		input_list[174] <= 8'd162;		input_list[175] <= 8'd158;		input_list[176] <= 8'd174;		input_list[177] <= 8'd170;		input_list[178] <= 8'd167;		input_list[179] <= 8'd167;		input_list[180] <= 8'd164;		input_list[181] <= 8'd163;		input_list[182] <= 8'd164;		input_list[183] <= 8'd159;		input_list[184] <= 8'd174;		input_list[185] <= 8'd173;		input_list[186] <= 8'd170;		input_list[187] <= 8'd167;		input_list[188] <= 8'd167;		input_list[189] <= 8'd166;		input_list[190] <= 8'd166;		input_list[191] <= 8'd160;		// input list 4		input_list[192] <= 8'd151;		input_list[193] <= 8'd147;		input_list[194] <= 8'd152;		input_list[195] <= 8'd140;		input_list[196] <= 8'd138;		input_list[197] <= 8'd125;		input_list[198] <= 8'd136;		input_list[199] <= 8'd160;		input_list[200] <= 8'd157;		input_list[201] <= 8'd148;		input_list[202] <= 8'd152;		input_list[203] <= 8'd137;		input_list[204] <= 8'd124;		input_list[205] <= 8'd105;		input_list[206] <= 8'd108;		input_list[207] <= 8'd144;		input_list[208] <= 8'd152;		input_list[209] <= 8'd151;		input_list[210] <= 8'd146;		input_list[211] <= 8'd128;		input_list[212] <= 8'd99;		input_list[213] <= 8'd73;		input_list[214] <= 8'd75;		input_list[215] <= 8'd116;		input_list[216] <= 8'd154;		input_list[217] <= 8'd148;		input_list[218] <= 8'd145;		input_list[219] <= 8'd111;		input_list[220] <= 8'd91;		input_list[221] <= 8'd68;		input_list[222] <= 8'd62;		input_list[223] <= 8'd98;		input_list[224] <= 8'd156;		input_list[225] <= 8'd144;		input_list[226] <= 8'd147;		input_list[227] <= 8'd93;		input_list[228] <= 8'd97;		input_list[229] <= 8'd105;		input_list[230] <= 8'd61;		input_list[231] <= 8'd82;		input_list[232] <= 8'd155;		input_list[233] <= 8'd139;		input_list[234] <= 8'd149;		input_list[235] <= 8'd76;		input_list[236] <= 8'd101;		input_list[237] <= 8'd140;		input_list[238] <= 8'd59;		input_list[239] <= 8'd74;		input_list[240] <= 8'd148;		input_list[241] <= 8'd135;		input_list[242] <= 8'd147;		input_list[243] <= 8'd71;		input_list[244] <= 8'd114;		input_list[245] <= 8'd158;		input_list[246] <= 8'd79;		input_list[247] <= 8'd66;		input_list[248] <= 8'd135;		input_list[249] <= 8'd120;		input_list[250] <= 8'd133;		input_list[251] <= 8'd92;		input_list[252] <= 8'd133;		input_list[253] <= 8'd176;		input_list[254] <= 8'd103;		input_list[255] <= 8'd60;		//

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
九九精品视频在线看| 欧美日韩午夜在线| 精品视频在线免费看| 精品国产免费久久| 亚洲精品ww久久久久久p站 | 日韩欧美视频在线| 18成人在线视频| 国产在线精品视频| 欧美精品一二三| 亚洲欧美日韩中文播放| 国产精品白丝av| 欧美一区二区二区| 亚洲国产日日夜夜| 99久久精品一区二区| 久久精品在线免费观看| 蜜臀va亚洲va欧美va天堂| 欧美性猛交一区二区三区精品| 国产调教视频一区| 精品一区二区三区视频在线观看 | 亚洲男女一区二区三区| 成人av综合在线| 国产午夜精品久久久久久免费视 | 不卡在线视频中文字幕| 久久久久久9999| 毛片基地黄久久久久久天堂| 欧美色图在线观看| 亚洲精品第1页| 欧美在线观看18| 狠狠色综合日日| 欧美电影一区二区三区| 一区二区成人在线| 色综合天天做天天爱| 亚洲久本草在线中文字幕| 成人妖精视频yjsp地址| 日韩欧美一区二区在线视频| 日本一区中文字幕| 欧美日韩国产小视频| 午夜视频在线观看一区二区| 色噜噜狠狠成人中文综合| 亚洲丝袜美腿综合| 欧美综合亚洲图片综合区| 亚瑟在线精品视频| 欧美夫妻性生活| 麻豆专区一区二区三区四区五区| 欧美精品久久一区| 老司机午夜精品99久久| 久久久久综合网| 99久精品国产| 亚洲欧洲国产日本综合| 一本久道中文字幕精品亚洲嫩| 亚洲综合激情网| 3d成人h动漫网站入口| 久久精品国产一区二区三| 欧美精品一区二区三区在线| 国产成人精品aa毛片| 国产精品成人免费| 欧美色图免费看| 久久精品72免费观看| 欧美激情一区二区三区四区| 色综合中文综合网| 97se亚洲国产综合自在线不卡 | 国产亚洲成年网址在线观看| 不卡av电影在线播放| 一区二区三区在线免费观看| 7777精品伊人久久久大香线蕉经典版下载| 欧美色图片你懂的| 蜜桃在线一区二区三区| 中国av一区二区三区| 欧美网站一区二区| 国产精品一二三四区| 亚洲在线视频一区| 久久亚洲捆绑美女| 在线看国产一区二区| 激情久久五月天| 一区二区在线观看视频| 欧美成人一级视频| 欧美午夜精品一区二区三区| 国模大尺度一区二区三区| 亚洲人成人一区二区在线观看| 日韩一区二区三区高清免费看看| 成人教育av在线| 久久99国产精品免费| 亚洲精品成人精品456| 久久综合久久综合久久综合| 欧美系列一区二区| 成人视屏免费看| 麻豆一区二区三区| 亚洲一区二区三区四区在线免费观看 | 久久九九久久九九| 91精品免费观看| 欧美在线999| 91麻豆国产香蕉久久精品| 国模套图日韩精品一区二区| 天天做天天摸天天爽国产一区| 国产精品毛片高清在线完整版| 日韩免费看网站| 91精品婷婷国产综合久久竹菊| 日本韩国一区二区| 91在线观看污| 成人激情视频网站| 成人午夜电影久久影院| 国内精品久久久久影院色| 蜜臀av性久久久久av蜜臀妖精| 亚洲成a人在线观看| 一区二区三国产精华液| 中文字幕在线免费不卡| 久久这里只有精品首页| 久久亚洲精华国产精华液| 欧美一二区视频| 日韩欧美在线网站| 日韩亚洲欧美成人一区| 欧美巨大另类极品videosbest | 精品一区二区三区免费| 蓝色福利精品导航| 激情五月激情综合网| 韩国女主播成人在线| 精品亚洲免费视频| 国产一区二区三区免费看| 国产一区二区三区免费| 国产精一区二区三区| 高清shemale亚洲人妖| 成人av午夜电影| 9色porny自拍视频一区二区| 99久久精品免费看国产免费软件| 91色|porny| 欧美日本一道本| 欧美一区二区精品久久911| 日韩欧美国产午夜精品| 欧美成人三级在线| 欧美国产精品一区二区| 国产精品国产三级国产a | 国产精品视频一二三区| 国产精品久久久久天堂| 一区二区三区在线观看国产 | 中文字幕一区二区三区四区不卡 | 蜜臀精品久久久久久蜜臀| 国产一区二区福利视频| 99精品国产91久久久久久| 色婷婷综合久久久中文字幕| 欧美裸体bbwbbwbbw| 2017欧美狠狠色| 亚洲精品福利视频网站| 理论电影国产精品| 97精品视频在线观看自产线路二| 欧美三级日韩三级国产三级| 精品国产乱子伦一区| 亚洲女性喷水在线观看一区| 视频一区视频二区中文字幕| 国产一区三区三区| 欧美性高清videossexo| 久久久99精品免费观看不卡| 一区二区成人在线观看| 国产精品自拍av| 欧美色图激情小说| 国产欧美一区二区三区网站| 亚洲一区二区视频在线| 国产高清不卡二三区| 欧美日本在线一区| 国产丝袜美腿一区二区三区| 天天操天天干天天综合网| 丰满少妇在线播放bd日韩电影| 欧美午夜精品一区二区三区| 日本一区二区三区四区在线视频| 亚洲aⅴ怡春院| av电影一区二区| 精品久久久三级丝袜| 亚洲自拍偷拍图区| 成人免费观看av| 欧美r级电影在线观看| 亚洲一二三四在线| 99久久久免费精品国产一区二区| 精品女同一区二区| 日本在线播放一区二区三区| 91视频91自| 亚洲欧美综合在线精品| 岛国av在线一区| 精品国产乱码久久久久久蜜臀| 婷婷综合久久一区二区三区| 色94色欧美sute亚洲线路一久 | 婷婷综合另类小说色区| 色综合久久99| 亚洲欧美另类久久久精品2019| 国产 日韩 欧美大片| 精品国产乱码久久久久久蜜臀| 日韩二区三区在线观看| 欧美性感一类影片在线播放| 一区二区三区在线观看欧美| 91影院在线免费观看| 国产精品久久久久久久久快鸭| 国产成a人亚洲| 久久久久久久综合| 国产成人在线色| 久久久久久久久久久久电影| 国产精品99久久久久久有的能看 | 日韩女优av电影| 精品亚洲欧美一区| 久久网站最新地址| 国产一区二区精品久久| 国产欧美一区二区精品秋霞影院 | 国模大尺度一区二区三区|