URL
https://opencores.org/ocsvn/bluespec-h264/bluespec-h264/trunk
Subversion Repositories bluespec-h264
[/] [bluespec-h264/] [trunk/] [src/] [mkFinalOutput.bsv] - Rev 9
Go to most recent revision | Compare with Previous | Blame | View Log
//**********************************************************************
// final output implementation
//----------------------------------------------------------------------
//
//
package mkFinalOutput;
import H264Types::*;
import IFinalOutput::*;
import FIFO::*;
import RegFile::*;
import Connectable::*;
import GetPut::*;
`define INPUT_SIZE 17740800
//-----------------------------------------------------------
// Final Output Module
//-----------------------------------------------------------
module mkFinalOutput( IFinalOutput );
FIFO#(BufferControlOT) infifo <- mkFIFO;
RegFile#(Bit#(27), Bit#(8)) rfile <- mkRegFileLoad("golden.hex", 0, `INPUT_SIZE);
Reg#(Bit#(27)) index <- mkReg(0);
Reg#(Bit#(32)) tick_counter <- mkReg(0);
Reg#(Bit#(32)) data_seen_counter <- mkReg(0);
Reg#(Bit#(32)) last_f_count <- mkReg(0);
Reg#(Bit#(32)) f_count <- mkReg(0);
rule tick;
tick_counter <= tick_counter + 1;
if(tick_counter%2000000 == 0)
begin
if(last_f_count == f_count)
begin
$display("mkFinalOutput: Warning: no new frames, stuck at %d", last_f_count);
end
else
begin
$display("mkFinalOutput: Feelin' fine current frames: %d", last_f_count);
end
last_f_count <= f_count;
end
endrule
//-----------------------------------------------------------
// Rules
rule finalout (True);
Bit#(32) data_constant = pack(fromInteger(horizontal_pixels * vertical_pixels))*3/2;
if(data_seen_counter + 4 > data_constant)
begin
f_count <= f_count + 1;
data_seen_counter <= 0;
end
else
begin
data_seen_counter <= data_seen_counter+4;
end
index <= index + 4;
if(infifo.first() matches tagged YUV .xdata)
begin
$display("OUT %h", xdata[31:24]);
$display("OUT %h", xdata[23:16]);
$display("OUT %h", xdata[15:8]);
$display("OUT %h", xdata[7:0]);
if( xdata[7:0] != rfile.sub(index))
begin
$display("mkFinalOutput: ccl5finalout ERROR %h, index %d", xdata[7:0], index);
end
if( xdata[15:8] != rfile.sub(index + 1))
begin
$display("mkFinalOutput: ccl5finalout ERROR %h, index %d", xdata[15:8], index + 1);
end
if( xdata[23:16] != rfile.sub(index+2))
begin
$display("mkFinalOutput: ccl5finalout ERROR %h, index %d", xdata[23:16], index+2);
end
if( xdata[31:24] != rfile.sub(index+3))
begin
$display("mkFinalOutput: ccl5finalout ERROR %h, index %d", xdata[31:24], index+3);
end
infifo.deq();
end
else
$finish(0);
endrule
interface Put ioin = fifoToPut(infifo);
endmodule
endpackage
Go to most recent revision | Compare with Previous | Blame | View Log