程序得到EXC_BAD_ACCESS

时间:2011-01-27 19:12:37

标签: c opengl sdl

编译没问题,但程序在此功能中停止。我有win的版本,它运行正常,但是当我为Mac制作版本时,它会得到这个例外:(

 int Reconstruct(int rez)
{ //here is program stopped!!!!

static SDL_Surface *projekce; static SDL_Surface *sc; static SDL_Surface *rek;

projekce = SDL_CreateRGBSurface(SDL_SWSURFACE,240,240, 32,0,0,0,0); sc = SDL_CreateRGBSurface(SDL_SWSURFACE, 400, 400, 32, 0, 0, 0, 0); // Create two arrays of unsigned bytes (chars). 4 bytes per pixel (RGBA) unsigned char *pixels[400 * 400 * 4]; unsigned char *pixelsbuf[400 * 400 * 4];

glGenTextures(1, &gl_texture);// generate one texture glBindTexture(GL_TEXTURE_2D, gl_texture);// Set the texture

// Set the texture filters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);

int angle = 0; int snimek = 0; int i, j, k, l;// promene pro cykly

for(i=0;i<88;i++) {

char nazev[25] = "OUT/snimek"; itoa(snimek, CisloSnimku); strcat(nazev,CisloSnimku); strcat(nazev,".bmp"); rek = IMG_Load(nazev); snimek++;

SDL_LockSurface(rek); SDL_LockSurface(projekce);

//zkopiruj radek do snimku = vytvor snimek pro rotaci

for(j=0;j<240;j++) { if(j == 0) PixV1 = 0; else { PixV1 = getpixel(rek,j-1,rez); } if(j == 239) PixV3 = 0; else { PixV3 = getpixel(rek,j+1,rez); } PixV2 = getpixel(rek,j,rez);

SDL_GetRGB(PixV1,rek->format, &R, &G, &B); //Gs1 = ((R * 21) + (G * 61) + (B * 174)) / 256; //preved do grayscale pro blue Gs1 = ((R * 11) + (G * 174) + (B * 71)) / 256; //preved do grayscale pro green Gs1 = 255 - Gs1; //invert if (Gs1 < 50) Gs1 = 1; SDL_GetRGB(PixV2,rek->format, &R, &G, &B); //Gs2 = ((R * 21) + (G * 61) + (B * 174)) / 256; //preved do grayscale pro blue Gs2 = ((R * 11) + (G * 174) + (B * 71)) / 256; //preved do grayscale pro green Gs2 = 255 - Gs2; //invert if (Gs2 < 50) Gs2 = 1; SDL_GetRGB(PixV3,rek->format, &R, &G, &B); //Gs3 = ((R * 21) + (G * 61) + (B * 174)) / 256; //preved do grayscale pro blue Gs3 = ((R * 11) + (G * 174) + (B * 71)) / 256; //preved do grayscale pro green Gs3 = 255 - Gs3; //invert if (Gs3 < 50) Gs3 = 1; //Gs = (Gs1*(1)) + (Gs2*(-4)) + (Gs3*(1)); //convolution GOOD //Gs = (Gs1*(-1)) + (Gs2*(3)) + (Gs3*(-1)); //convolution

for(k=0;k<240;k++) { DrawPixel(projekce, j, k, Gs2, Gs2, Gs2); } }

SDL_UnlockSurface(rek); SDL_UnlockSurface(projekce);

gluBuild2DMipmaps(GL_TEXTURE_2D, 3, projekce->w, projekce->h, GL_RGBA, GL_UNSIGNED_BYTE, projekce->pixels);
angle += 360/88;
Atlantis_Display(angle);

////////////////////////////////////////////////////////////////////////////

glReadPixels(0, 0, 400, 400, GL_RGBA, GL_UNSIGNED_BYTE, pixelsbuf);

////////////////////////////////////////////////////////////////////////////

SDL_LockSurface(sc); SDL_LockSurface(final);

G1 = 0; G = 0; R = 0; B = 0;

for(l=0;l<400;l++) { memcpy(pixels+(400-l-1)*400*4, pixelsbuf+l*400*4, 400*4); sc->pixels = pixels;

for(j=0;j<400;j++) {

PixelValue = getpixel(sc, j, l); SDL_GetRGB(PixelValue, sc->format, &R, &G, &B); PixelValue = getpixel(final, j, l); SDL_GetRGB(PixelValue, final->format, &R1, &G1, &B1); //pom = ((R/2)+(B/2)+(G*2)); G1 += (G/90); DrawPixel(final, j, l, G1, G1, G1);

}   }

SDL_UnlockSurface(SC);

}

char fin [25] =“FIN / final”;  itoa(rez,CisloSnimku);  的strcat(翅片,CisloSnimku);  的strcat(鳍, “BMP”);  SDL_SaveBMP(final,fin);  SDL_UnlockSurface(最终);

SDL_FreeSurface(最终);  SDL_FreeSurface(SC);  SDL_FreeSurface(projekce);  SDL_FreeSurface(REK);  SDL_QUIT();  返回0; }

1 个答案:

答案 0 :(得分:2)

以下代码非常可疑:

 unsigned char *pixels[400 * 400 * 4];
 unsigned char *pixelsbuf[400 * 400 * 4];

首先,那些应该是char而不是char *但更大的问题是你在堆栈上分配了大量的数据结构(每个数组2.5 MB,如所写的)。我猜你超过了你的可用堆栈。它们应该被动态分配(并正确调整大小)。

相关问题