diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-07 11:21:06 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-09 10:57:28 +0200 |
commit | a4cb0af94582aa7598db95bba4bc92f1b349dfe3 (patch) | |
tree | 1b20533e55c14f8d24fc79b05cbf9dcef370eecf /libavfilter/video.c | |
parent | e62e455f7b4c5b148f5a289ba823dcc71d6ca389 (diff) | |
download | ffmpeg-a4cb0af94582aa7598db95bba4bc92f1b349dfe3.tar.gz |
lavfi: drop deprecated and pointless avfilter_default_end_frame() function
Fix warning when compiling boxblur.
While this is technically a major API break, practically there will be no
one using that function since the filtering API is mostly private, so
that function alone is not usable.
Diffstat (limited to 'libavfilter/video.c')
-rw-r--r-- | libavfilter/video.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/video.c b/libavfilter/video.c index 14e7e72f41..5294c1b62d 100644 --- a/libavfilter/video.c +++ b/libavfilter/video.c @@ -406,9 +406,3 @@ int ff_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) av_assert1(link->cur_buf_copy->buf->refcount > 0); return ret; } - -int avfilter_default_end_frame(AVFilterLink *inlink) -{ - return default_end_frame(inlink); -} - |