URL
https://opencores.org/ocsvn/bluespec-h264/bluespec-h264/trunk
Subversion Repositories bluespec-h264
[/] [bluespec-h264/] [trunk/] [src_fpga/] [IInterpolator.bsv] - Rev 3
Go to most recent revision | Compare with Previous | Blame | View Log
//**********************************************************************
// Interface for interpolator
//----------------------------------------------------------------------
//
//
//
package IInterpolator;
import H264Types::*;
import GetPut::*;
import Vector::*;
import ClientServer::*;
interface Interpolator;
method Action setPicWidth( Bit#(PicWidthSz) newPicWidth );
method Action setPicHeight( Bit#(PicHeightSz) newPicHeight );
method Action request( InterpolatorIT inputdata );
method Vector#(4,Bit#(8)) first();
method Action deq();
method Action endOfFrame();
interface Client#(InterpolatorLoadReq,InterpolatorLoadResp) mem_client;
endinterface
endpackage
Go to most recent revision | Compare with Previous | Blame | View Log