comparison 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
comparison
equal deleted inserted replaced
1927:d7505fbe66cb 1928:0c23a5564489
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000408 18 #define FFMPEG_VERSION_INT 0x000408
19 #define FFMPEG_VERSION "0.4.8" 19 #define FFMPEG_VERSION "0.4.8"
20 #define LIBAVCODEC_BUILD 4707 20 #define LIBAVCODEC_BUILD 4708
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
1819 int input_width, int input_height); 1819 int input_width, int input_height);
1820 1820
1821 ImgReSampleContext *img_resample_full_init(int owidth, int oheight, 1821 ImgReSampleContext *img_resample_full_init(int owidth, int oheight,
1822 int iwidth, int iheight, 1822 int iwidth, int iheight,
1823 int topBand, int bottomBand, 1823 int topBand, int bottomBand,
1824 int leftBand, int rightBand); 1824 int leftBand, int rightBand,
1825 int padtop, int padbottom,
1826 int padleft, int padright);
1827
1825 1828
1826 void img_resample(ImgReSampleContext *s, 1829 void img_resample(ImgReSampleContext *s,
1827 AVPicture *output, const AVPicture *input); 1830 AVPicture *output, const AVPicture *input);
1828 1831
1829 void img_resample_close(ImgReSampleContext *s); 1832 void img_resample_close(ImgReSampleContext *s);