| 1 |
47 |
qaztronic |
//////////////////////////////////////////////////////////////////////
|
| 2 |
|
|
//// ////
|
| 3 |
|
|
//// Copyright (C) 2015 Authors and OPENCORES.ORG ////
|
| 4 |
|
|
//// ////
|
| 5 |
|
|
//// This source file may be used and distributed without ////
|
| 6 |
|
|
//// restriction provided that this copyright statement is not ////
|
| 7 |
|
|
//// removed from the file and that any derivative work contains ////
|
| 8 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
| 9 |
|
|
//// ////
|
| 10 |
|
|
//// This source file is free software; you can redistribute it ////
|
| 11 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
| 12 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
| 13 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
| 14 |
|
|
//// later version. ////
|
| 15 |
|
|
//// ////
|
| 16 |
|
|
//// This source is distributed in the hope that it will be ////
|
| 17 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
| 18 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
| 19 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
| 20 |
|
|
//// details. ////
|
| 21 |
|
|
//// ////
|
| 22 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
| 23 |
|
|
//// Public License along with this source; if not, download it ////
|
| 24 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
| 25 |
|
|
//// ////
|
| 26 |
|
|
//////////////////////////////////////////////////////////////////////
|
| 27 |
|
|
|
| 28 |
|
|
// --------------------------------------------------------------------
|
| 29 |
|
|
class video_frame_config;
|
| 30 |
|
|
rand int pixels_per_line;
|
| 31 |
|
|
rand int lines_per_frame;
|
| 32 |
|
|
rand int bits_per_pixel;
|
| 33 |
|
|
rand int bus_width;
|
| 34 |
|
|
int bytes_per_pixel;
|
| 35 |
|
|
int pixels_per_clk;
|
| 36 |
|
|
string name;
|
| 37 |
|
|
|
| 38 |
|
|
// --------------------------------------------------------------------
|
| 39 |
|
|
function void init( int pixels_per_line
|
| 40 |
|
|
, int lines_per_frame
|
| 41 |
|
|
, int bits_per_pixel
|
| 42 |
|
|
, int bus_width
|
| 43 |
|
|
, string name = ""
|
| 44 |
|
|
);
|
| 45 |
|
|
this.pixels_per_line = pixels_per_line;
|
| 46 |
|
|
this.lines_per_frame = lines_per_frame;
|
| 47 |
|
|
this.bits_per_pixel = bits_per_pixel;
|
| 48 |
|
|
this.bytes_per_pixel = (bits_per_pixel % 8 == 0)
|
| 49 |
|
|
? (bits_per_pixel / 8)
|
| 50 |
|
|
: (bits_per_pixel / 8) + 1;
|
| 51 |
|
|
this.bus_width = bus_width;
|
| 52 |
|
|
this.pixels_per_clk = bus_width / bytes_per_pixel;
|
| 53 |
|
|
this.name = name;
|
| 54 |
|
|
|
| 55 |
|
|
// --------------------------------------------------------------------
|
| 56 |
|
|
assert(bus_width % bytes_per_pixel == 0);
|
| 57 |
|
|
endfunction : init
|
| 58 |
|
|
|
| 59 |
|
|
// --------------------------------------------------------------------
|
| 60 |
50 |
qaztronic |
endclass
|