Skip to content
Snippets Groups Projects
Commit ebee18a4 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

changed unsigned long long int to uint64_t for better compatibility in the...

changed unsigned long long int to uint64_t for better compatibility in the stereo camera source code.
parent fce88641
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ int main(int argc, char *argv[])
char *left=NULL,*right=NULL;
std::string new_frame,filename;
std::stringstream text;
unsigned long long int guid=0x00B09D01007D6D85LL;
uint64_t guid=0x00B09D01007D6D85LL;
std::list<std::string> events;
try
......
......@@ -22,7 +22,7 @@ CPGRStereoCamera::CPGRStereoCamera(dc1394_t *firewire,uint64_t camera_id):CFirew
// overloaded functions from the base class
void CPGRStereoCamera::set_config(unsigned int *left_off,unsigned int *top_off,unsigned int *width,unsigned int *height, float *framerate, depths_t depth, codings_t coding)
{
unsigned long long int total_bytes;
uint64_t total_bytes;
dc1394color_coding_t dc1394_coding;
dc1394error_t error;
unsigned int bpp;
......
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