Mercurial > libavcodec.hg
diff avcodec.h @ 1928:0c23a5564489 libavcodec
padding support in ffmpeg patch by (Todd Kirby <doubleshot at pacbell dot net>)
| author | michael |
|---|---|
| date | Thu, 08 Apr 2004 18:54:40 +0000 |
| parents | f2d134308a70 |
| children | 0181b79f9a00 |
line wrap: on
line diff
--- a/avcodec.h Wed Apr 07 13:26:47 2004 +0000 +++ b/avcodec.h Thu Apr 08 18:54:40 2004 +0000 @@ -17,7 +17,7 @@ #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_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);
