Skip to content
Snippets Groups Projects
Commit 82c8b760 authored by Vipin Thomas's avatar Vipin Thomas
Browse files

Update pixel.cpp

parent f28b6f0e
No related branches found
No related tags found
No related merge requests found
...@@ -9,9 +9,9 @@ typedef ap_axis<32,0,0,0> pkt_t; ...@@ -9,9 +9,9 @@ typedef ap_axis<32,0,0,0> pkt_t;
static int count_streams = 0; static int count_streams = 0;
static long long charIn=0; static long long charIn=0;
static int addNum=0; static int addNum=0;
static int decrpyt=0; //static int decrpyt=0;
static long long asciiNum=0; //static long long asciiNum=0;
static int asciiVal=0; //static int asciiVal=0;
long long convert(int n); long long convert(int n);
long long toAscii(chr number); long long toAscii(chr number);
...@@ -38,28 +38,28 @@ void pixel( ...@@ -38,28 +38,28 @@ void pixel(
#pragma HLS INTERFACE axis port=dout #pragma HLS INTERFACE axis port=dout
pkt_t pkt=din.read(); pkt_t pkt=din.read();
pkt.data=stegno(character,pkt.data,position1,position2);
// switch(selector)
// {
// case 0:
// pkt.data=stegno(character,pkt.data,position1,position2);
// break;
switch(selector) // case 1:
{ // stegnoDecrypt(pkt.data);
case 0: // break;
pkt.data=stegno(character,pkt.data,position1,position2);
break;
case 1: // default:
stegnoDecrypt(pkt.data); // break;
break; // }
default:
break;
}
count_streams++; count_streams++;
if (count_streams == stream_count){ if (count_streams == stream_count){
count_streams = 0; count_streams = 0;
asciiVal= convertBinInt(asciiNum); // asciiVal= convertBinInt(asciiNum);
pkt.data=asciiVal; // pkt.data=asciiVal;
dout.write(pkt); // dout.write(pkt);
} }
// pending: have to make count=0 when TLAST signal is active - for w not in the range of 0 to n(size of the array) // pending: have to make count=0 when TLAST signal is active - for w not in the range of 0 to n(size of the array)
...@@ -72,7 +72,7 @@ void pixel( ...@@ -72,7 +72,7 @@ void pixel(
int stegno(int c,int data,int position1,int position2){ int stegno(int c,int data,int position1,int position2){
charIn=toAscii((char)c); charIn=toAscii((char)c);
if((count_streams > 3 * (position1 - 1)) && (count_streams < 3 * (position2))){ if((count_streams >= 3 * (position1 - 1)) && (count_streams < 3 * (position2))){
addNum=charIn%10; addNum=charIn%10;
charIn=(int)charIn/10; charIn=(int)charIn/10;
...@@ -82,13 +82,13 @@ int stegno(int c,int data,int position1,int position2){ ...@@ -82,13 +82,13 @@ int stegno(int c,int data,int position1,int position2){
} }
void stegnoDcrypt(int data){ //void stegnoDcrypt(int data){
//
decrpyt=convert(data)%10; // decrpyt=convert(data)%10;
//
asciiNum=asciiNum*10+decrpyt; // asciiNum=asciiNum*10+decrpyt;
//
} //}
long long convert(int n) { long long convert(int n) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment