small changes

added including for precomp
This commit is contained in:
Alexander Shishkov 2013-07-18 00:28:40 +04:00
parent 091b48de60
commit 8ccca90dca
2 changed files with 6 additions and 1 deletions

View File

@ -40,11 +40,13 @@
// //
//M*/ //M*/
#include "precomp.hpp"
#include "grfmt_hdr.hpp" #include "grfmt_hdr.hpp"
#include "rgbe.hpp" #include "rgbe.hpp"
namespace cv namespace cv
{ {
HdrDecoder::HdrDecoder() HdrDecoder::HdrDecoder()
{ {
m_signature = "#?RGBE"; m_signature = "#?RGBE";

View File

@ -40,9 +40,12 @@
// //
//M*/ //M*/
#include "precomp.hpp"
#include "rgbe.hpp" #include "rgbe.hpp"
#include <math.h> #include <math.h>
#if !defined(__APPLE__)
#include <malloc.h> #include <malloc.h>
#endif
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
@ -189,7 +192,7 @@ int RGBE_ReadHeader(FILE *fp, int *width, int *height, rgbe_header_info *info)
} }
else if (info) { else if (info) {
info->valid |= RGBE_VALID_PROGRAMTYPE; info->valid |= RGBE_VALID_PROGRAMTYPE;
for(i=0;i<sizeof(info->programtype)-1;i++) { for(i=0;i<static_cast<int>(sizeof(info->programtype)-1);i++) {
if ((buf[i+2] == 0) || isspace(buf[i+2])) if ((buf[i+2] == 0) || isspace(buf[i+2]))
break; break;
info->programtype[i] = buf[i+2]; info->programtype[i] = buf[i+2];