40 // Accepts 13-bits signed data (only 12-bit can be ecoded), so DC difference (to be encoded) is limited (saturated) to 12 bits, not the value itself 41 // AC - always limited to 800 .. 7ff 43 input clk,
// pixel clock, posedge 44 input en,
// enable (0 resets) 45 input lasti,
// was "last MCU in a frame" (@ stb) 46 input first_blocki,
// first block in frame - save fifo write address (@ stb) 47 input [
2:
0]
comp_numberi,
// [2:0] component number 0..2 in color, 0..3 - in jp4diff, >= 4 - don't use (@ stb) 48 input comp_firsti,
// first this component in a frame (reset DC) (@ stb) 50 input comp_lastinmbi,
// last component in a macroblock (@ stb) is it needed? 51 input stb,
// strobe that writes firsti, lasti, tni,average 52 input [
12:
0]
zdi,
// [11:0] zigzag-reordered data input 54 input zds,
// strobe - one ahead of the DC component output 66 // 8x13 DC storage memory 71 {~
dc_diff[
11],{
11{
dc_diff[
11]}}};
// difference (to be encoded) limited to fit 12 bits 72 reg [
12:
0]
dc_restored;
// corrected DC value of the current block, compensated to fit difference to 12 bits 79 reg [
14:
0]
val_r;
// DC diff/AC values to be sent out, registered 81 reg DCACen;
// enable DC/AC (2 cycles ahead of do 90 wire [
2:
0]
comp_numbero;
// [2:0] component number 0..2 in color, 0..3 - in jp4diff, >= 4 - don't use 91 wire comp_firsto;
// first this component in a frame (reset DC) 93 // wire comp_lastinmbo; // last component in a macroblock 94 wire lasto;
// last macroblock in a frame 111 always @ (
posedge clk)
begin 125 always @ (
posedge clk)
begin 142 always @ (
posedge clk)
begin 152 always @ (
posedge clk)
begin 160 // Generate output stream to facilitate huffman encoding. The data will go to FIFO (16x) to compensate for possible long Huffman codes 161 // and/or zero-byte insertions 163 // {2'b11, color,last block, dc[11:0]} - DC data 164 // {2'b10, 1'b0, last coeff, ac[11:0]} - AC data (last coeff is set if it is last- 63-rd AC coefficient) 165 // {2'h00, 2'b00, 6'b0,rll[ 5:0]} - RLL zeroes. 166 // {2'h00, 2'b01, 6'b0,rll[ 5:0]} - end of block. lower 6 bits will have length that should be ignored
[7:0] 2320dc_memreg[12:0]
[2:0] 2317dbg_block_mem_ra
[2:0] 2318dbg_block_mem_wa
[0:7] 2345block_mem_ramreg[6:0]
2344block_mem_wa_savereg[2:0]
2338comp_numberowire[2:0]
2323dc_diff_limitedwire[11:0]
[2:0] 2319dbg_block_mem_wa_save