::
::
::
::
::
- Decode()
- {
- FILE * inpf;
-
- int nWrite;
- int i,p;
- int nalLen;
- unsigned char* Buf;
- int got_picture, consumed_bytes;
- unsigned char *DisplayBuf;
- DisplayBuf=(unsigned char *)malloc(60000);
-
- char outfile[] = "test.pgm";
-
-
- inpf = fopen("test.264", "rb");
-
-
-
- if(!inpf)
- {
- goto Decodereturn;
- }
-
- nalLen = 0;
- Buf = (unsigned char*)calloc ( 1000000, sizeof(char));
-
-
- avcodec_init();
- avcodec_register_all();
- codec = avcodec_find_decoder(CODEC_ID_H264);
-
- if (!codec) {
- return 0;
- }
-
-
- c = avcodec_alloc_context();
-
- if(!c){
- return 0;
- }
-
-
- if (avcodec_open(c, codec) < 0) {
- return 0;
- }
-
-
-
- picture = avcodec_alloc_frame();
- if(!picture){
- return 0;
- }
-
- rgbdatanew = (unsigned char *)malloc(sizeof(unsigned char)*(3 * width * height));
-
- while(!feof(inpf))
- {
-
-
- nalLen = getNextNal(inpf, Buf);
-
-
- consumed_bytes= avcodec_decode_video(c, picture, &got_picture, Buf, nalLen);
-
- if(consumed_bytes > 0)
- {
-
-
- p=0;
- for(i=0; i<c->height; i++)
- {
- memcpy(DisplayBuf+p,picture->data[0] + i * picture->linesize[0], c->width);
- p+=c->width;
- }
- for(i=0; i<c->height/2; i++)
- {
- memcpy(DisplayBuf+p,picture->data[1] + i * picture->linesize[1], c->width/2);
- p+=c->width/2;
- }
- for(i=0; i<c->height/2; i++)
- {
- memcpy(DisplayBuf+p,picture->data[2] + i * picture->linesize[2], c->width/2);
- p+=c->width/2;
- }
-
- DisplayVideo(DisplayBuf);
- }
- }
-
-
- if(inpf)
- fclose(inpf);
-
- Decodereturn:
-
-
- if(c) {
- avcodec_close(c);
- av_free(c);
- c = NULL;
- }
-
- if(picture) {
- av_free(picture);
- picture = NULL;
- }
-
-
- if(Buf)
- {
- free(Buf);
- Buf = NULL;
- }
-
- free(DisplayBuf);
- }
posted on
2010-06-29 15:41
物联互通
阅读(
3661)
评论()
编辑
收藏
举报