URL
https://opencores.org/ocsvn/bluespec-h264/bluespec-h264/trunk
Subversion Repositories bluespec-h264
[/] [bluespec-h264/] [trunk/] [src/] [IEntropyDec.bsv] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
//**********************************************************************
// Interface for Entropy Decoder
//----------------------------------------------------------------------
//
//
//
package IEntropyDec;
import H264Types::*;
import GetPut::*;
import ClientServer::*;
interface IEntropyDec;
// Interface for inter-module io
interface Put#(NalUnwrapOT) ioin;
interface Get#(EntropyDecOT) ioout;
interface Get#(EntropyDecOT_InverseTrans) ioout_InverseTrans;
// Interface for module to memory
interface Client#(MemReq#(TAdd#(PicWidthSz,1),20),MemResp#(20)) mem_client;
endinterface
endpackage
Go to most recent revision | Compare with Previous | Blame | View Log