diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-08 15:03:17 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-08 15:03:17 +0000 |
commit | d578432db86762cb131c6b8ac57d20338a866bdb (patch) | |
tree | eec47febaaa12af65e76c32e0306830140ffc946 /libavcodec/imgconvert.c | |
parent | dd1c8f3e6e5380f993c86750bb09fd42e130143f (diff) | |
download | ffmpeg-d578432db86762cb131c6b8ac57d20338a866bdb.tar.gz |
Remove stuff under #if LIBAVCODEC_VERSION_INT.
Originally committed as revision 15263 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 63c59d42dd..d182c5905d 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -2087,27 +2087,6 @@ int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, return 0; } -#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) -void img_copy(AVPicture *dst, const AVPicture *src, - int pix_fmt, int width, int height) -{ - av_picture_copy(dst, src, pix_fmt, width, height); -} - -int img_crop(AVPicture *dst, const AVPicture *src, - int pix_fmt, int top_band, int left_band) -{ - return av_picture_crop(dst, src, pix_fmt, top_band, left_band); -} - -int img_pad(AVPicture *dst, const AVPicture *src, int height, int width, - int pix_fmt, int padtop, int padbottom, int padleft, int padright, - int *color) -{ - return av_picture_pad(dst, src, height, width, pix_fmt, padtop, padbottom, padleft, padright, color); -} -#endif - #ifndef CONFIG_SWSCALE static uint8_t y_ccir_to_jpeg[256]; static uint8_t y_jpeg_to_ccir[256]; |