# HG changeset patch # User michaelni # Date 1039196372 0 # Node ID c87eee6da7b1f73364144f26f1e9ef307cf43fd4 # Parent f9e54ade14a1cc194d2b4da1029dee72ca7ab555 fixing api-example diff -r f9e54ade14a1 -r c87eee6da7b1 apiexample.c --- a/apiexample.c Fri Dec 06 16:19:25 2002 +0000 +++ b/apiexample.c Fri Dec 06 17:39:32 2002 +0000 @@ -164,7 +164,7 @@ AVCodecContext *c= NULL; int i, out_size, size, x, y, outbuf_size; FILE *f; - AVPicture picture; + AVVideoFrame *picture; UINT8 *outbuf, *picture_buf; printf("Video encoding\n"); @@ -177,6 +177,7 @@ } c= avcodec_alloc_context(); + picture= avcodec_alloc_picture(); /* put sample parameters */ c->bit_rate = 400000; @@ -207,12 +208,12 @@ size = c->width * c->height; picture_buf = malloc((size * 3) / 2); /* size for YUV 420 */ - picture.data[0] = picture_buf; - picture.data[1] = picture.data[0] + size; - picture.data[2] = picture.data[1] + size / 4; - picture.linesize[0] = c->width; - picture.linesize[1] = c->width / 2; - picture.linesize[2] = c->width / 2; + picture->data[0] = picture_buf; + picture->data[1] = picture->data[0] + size; + picture->data[2] = picture->data[1] + size / 4; + picture->linesize[0] = c->width; + picture->linesize[1] = c->width / 2; + picture->linesize[2] = c->width / 2; /* encode 1 second of video */ for(i=0;i<25;i++) { @@ -222,20 +223,20 @@ /* Y */ for(y=0;yheight;y++) { for(x=0;xwidth;x++) { - picture.data[0][y * picture.linesize[0] + x] = x + y + i * 3; + picture->data[0][y * picture->linesize[0] + x] = x + y + i * 3; } } /* Cb and Cr */ for(y=0;yheight/2;y++) { for(x=0;xwidth/2;x++) { - picture.data[1][y * picture.linesize[1] + x] = 128 + y + i * 2; - picture.data[2][y * picture.linesize[2] + x] = 64 + x + i * 5; + picture->data[1][y * picture->linesize[1] + x] = 128 + y + i * 2; + picture->data[2][y * picture->linesize[2] + x] = 64 + x + i * 5; } } /* encode the image */ - out_size = avcodec_encode_video(c, outbuf, outbuf_size, &picture); + out_size = avcodec_encode_video(c, outbuf, outbuf_size, picture); fwrite(outbuf, 1, out_size, f); } @@ -251,6 +252,7 @@ avcodec_close(c); free(c); + free(picture); printf("\n"); } @@ -276,7 +278,7 @@ AVCodecContext *c= NULL; int frame, size, got_picture, len; FILE *f; - AVPicture picture; + AVVideoFrame *picture; UINT8 inbuf[INBUF_SIZE], *inbuf_ptr; char buf[1024]; @@ -290,6 +292,7 @@ } c= avcodec_alloc_context(); + picture= avcodec_alloc_picture(); if(codec->capabilities&CODEC_CAP_TRUNCATED) c->flags|= CODEC_FLAG_TRUNCATED; /* we dont send complete frames */ @@ -335,7 +338,7 @@ feed decoder and see if it could decode a frame */ inbuf_ptr = inbuf; while (size > 0) { - len = avcodec_decode_video(c, &picture, &got_picture, + len = avcodec_decode_video(c, picture, &got_picture, inbuf_ptr, size); if (len < 0) { fprintf(stderr, "Error while decoding frame %d\n", frame); @@ -348,7 +351,7 @@ /* the picture is allocated by the decoder. no need to free it */ snprintf(buf, sizeof(buf), outfilename, frame); - pgm_save(picture.data[0], picture.linesize[0], + pgm_save(picture->data[0], picture->linesize[0], c->width, c->height, buf); frame++; } @@ -360,7 +363,7 @@ /* some codecs, such as MPEG, transmit the I and P frame with a latency of one frame. You must do the following to have a chance to get the last frame of the video */ - len = avcodec_decode_video(c, &picture, &got_picture, + len = avcodec_decode_video(c, picture, &got_picture, NULL, 0); if (got_picture) { printf("saving frame %3d\r", frame); @@ -369,7 +372,7 @@ /* the picture is allocated by the decoder. no need to free it */ snprintf(buf, sizeof(buf), outfilename, frame); - pgm_save(picture.data[0], picture.linesize[0], + pgm_save(picture->data[0], picture->linesize[0], c->width, c->height, buf); frame++; } @@ -378,6 +381,7 @@ avcodec_close(c); free(c); + free(picture); printf("\n"); }