gpt4 book ai didi

c - 使用缓冲区 : segfault 读取 JPEG 文件

转载 作者:太空宇宙 更新时间:2023-11-04 02:39:11 27 4
gpt4 key购买 nike

基本上我正在尝试为 JPEG 文件编写阅读器(使用 libjpeg),但我有一个段错误,我想知道是否有人可以看到我的错误在哪里?我确定它来自 malloc 但我不知道。我试图通过放置一些 printf 来进行一些调试,但绝对没有出现,wtf?

感谢您的帮助伙伴...

主.c :

#include <stdio.h>
#include <stdlib.h>
#include <jpeglib.h>
#include "fonctions.h"


int main (int argc, char** argv){


int *H;
int *W;
int *C;
printf("COUCOUCOUCOUCOU");
FILE *fichier = NULL;
char car;

fichier = fopen("cara.jpg", "r");

if (fichier == NULL)
printf("Probleme lecture");


lire(fichier, H, W, C);

fclose(fichier);
return 0;
}

lire.c :

#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <jpeglib.h>
#include <jerror.h>

unsigned char** lire (FILE* file, int *H, int *W, int *C){

struct jpeg_decompress_struct cinfo;
struct jpeg_error_mgr jerr;

int n = 0;
unsigned char** buffer;

printf("SHITSHITSHITSHIT\n");
fflush(stdout);
cinfo.err = jpeg_std_error(&jerr);
jpeg_create_decompress(&cinfo); // Initialisation de la structure

jpeg_stdio_src(&cinfo,file); // file est de type FILE * (descripteur de fichier
// sur le fichier jpega decompresser)
jpeg_read_header(&cinfo,TRUE);// lecture des infos sur l'image jpeg


jpeg_start_decompress(&cinfo);// lancement du processus de decompression


*H = cinfo.output_height;
*W = cinfo.output_width;
*C = cinfo.output_components;

buffer=(unsigned char **)malloc( (*H) *sizeof(unsigned char*) );

while (n < *H)
{
buffer[n] = (unsigned char*) malloc( (*W) * (*C) *sizeof(unsigned char *) );
printf("DEBUG\n");
fflush(stdout);
jpeg_read_scanlines(&cinfo,buffer+n,1); // lecture des n lignes suivantes de l'image
// dans le buffer (de type unsigned char *)
n++;
}

jpeg_finish_decompress(&cinfo);

jpeg_destroy_decompress(&cinfo);

return buffer;
}

我编译:

gcc -c -I/usr/local/include *.c
gcc *.o -o programme -ljpeg

最佳答案

当您调用 lire 时,您将 H、W 和 C 传递给该函数。这些是指针,它们未被初始化,因此您在 lire 中会发生崩溃。

*H = cinfo.output_height;

你需要像这样调用lire函数:

int H;
int W;
int C;

....

lire(fichier, &H, &W, &C);

关于c - 使用缓冲区 : segfault 读取 JPEG 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33826065/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com