diff options
author | Todd Kirby <doubleshot@pacbell.net> | 2004-04-08 18:54:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-08 18:54:40 +0000 |
commit | 1ff93ffcd442d406f49af461ac77686e4d890aa0 (patch) | |
tree | 0ae376b7a86c62e3fa2fed3b869666a9d523087b /libavcodec/avcodec.h | |
parent | 929a0c41d59fc6d386bdc18f1df73a68a80c584f (diff) | |
download | ffmpeg-1ff93ffcd442d406f49af461ac77686e4d890aa0.tar.gz |
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
Originally committed as revision 2982 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 909dec1545..10040b2067 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4707 +#define LIBAVCODEC_BUILD 4708 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1821,7 +1821,10 @@ ImgReSampleContext *img_resample_init(int output_width, int output_height, ImgReSampleContext *img_resample_full_init(int owidth, int oheight, int iwidth, int iheight, int topBand, int bottomBand, - int leftBand, int rightBand); + int leftBand, int rightBand, + int padtop, int padbottom, + int padleft, int padright); + void img_resample(ImgReSampleContext *s, AVPicture *output, const AVPicture *input); |