diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-03 08:23:08 -0800 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-03-07 09:35:24 +0200 |
commit | 54b298fe5650c124c29a8283cfd05024ac409d3a (patch) | |
tree | be859b9f5bf9bd26c815acb7f759200f318def2c /libavcodec/imgconvert.c | |
parent | 64e4386974b976070fc22ec3153e163de4a3e14e (diff) | |
download | ffmpeg-54b298fe5650c124c29a8283cfd05024ac409d3a.tar.gz |
lavc: Deprecate the deinterlace functions in libavcodec
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 36c24dfa88..8f8b6e3914 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -366,6 +366,8 @@ int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, return 0; } +#if FF_API_DEINTERLACE + #if !HAVE_MMX_EXTERNAL /* filter parameters: [-1 4 2 4 -1] // 8 */ static void deinterlace_line_c(uint8_t *dst, @@ -524,3 +526,5 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src, emms_c(); return 0; } + +#endif /* FF_API_DEINTERLACE */ |