comparison avcodec.h @ 630:b4ee42142ad1 libavcodec

croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
author michaelni
date Sun, 01 Sep 2002 07:19:38 +0000
parents f596db4aa871
children 57b9a37546a0
comparison
equal deleted inserted replaced
629:f65040bf4357 630:b4ee42142ad1
461 461
462 typedef struct ImgReSampleContext ImgReSampleContext; 462 typedef struct ImgReSampleContext ImgReSampleContext;
463 463
464 ImgReSampleContext *img_resample_init(int output_width, int output_height, 464 ImgReSampleContext *img_resample_init(int output_width, int output_height,
465 int input_width, int input_height); 465 int input_width, int input_height);
466
467 ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
468 int iwidth, int iheight,
469 int topBand, int bottomBand,
470 int leftBand, int rightBand);
471
466 void img_resample(ImgReSampleContext *s, 472 void img_resample(ImgReSampleContext *s,
467 AVPicture *output, AVPicture *input); 473 AVPicture *output, AVPicture *input);
468 474
469 void img_resample_close(ImgReSampleContext *s); 475 void img_resample_close(ImgReSampleContext *s);
470 476