diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-09-01 07:19:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-01 07:19:38 +0000 |
commit | ab6d194a38ec051aaa0c1b8131cd8110f9bce834 (patch) | |
tree | 9746659a3c760e91a031bcb6652d98f37d4d2c4e /libavcodec/avcodec.h | |
parent | d3b3efe3682233cd466eb1b0c4b3ecc58ed72ba0 (diff) | |
download | ffmpeg-ab6d194a38ec051aaa0c1b8131cd8110f9bce834.tar.gz |
croping patch by (talus25 at speakeasy dot net) with fixes from atmos & me
Originally committed as revision 888 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index eb228320f5..b65ac81cec 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -463,6 +463,12 @@ typedef struct ImgReSampleContext ImgReSampleContext; ImgReSampleContext *img_resample_init(int output_width, int output_height, int input_width, int input_height); + +ImgReSampleContext *img_resample_full_init(int owidth, int oheight, + int iwidth, int iheight, + int topBand, int bottomBand, + int leftBand, int rightBand); + void img_resample(ImgReSampleContext *s, AVPicture *output, AVPicture *input); |