summaryrefslogtreecommitdiff
path: root/libavfilter/avcodec.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-09-14 21:31:12 -0300
committerJames Almer <jamrial@gmail.com>2014-09-17 15:23:26 -0300
commitfffc9a077d39e4776665f10129c33bfbf1a86c29 (patch)
tree74e49ff00d915507d2d00a5b524a91fa1a43a5da /libavfilter/avcodec.c
parent9ac08d93b2aad6c34987ab68e55bce002c162423 (diff)
avfilter: remove obsolete FF_API_FILL_FRAME cruft
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/avcodec.c')
-rw-r--r--libavfilter/avcodec.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/libavfilter/avcodec.c b/libavfilter/avcodec.c
index ba11a25492..e0d90154ee 100644
--- a/libavfilter/avcodec.c
+++ b/libavfilter/avcodec.c
@@ -135,23 +135,3 @@ int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src)
return 0;
}
#endif
-
-#if FF_API_FILL_FRAME
-int avfilter_fill_frame_from_audio_buffer_ref(AVFrame *frame,
- const AVFilterBufferRef *samplesref)
-{
- return avfilter_copy_buf_props(frame, samplesref);
-}
-
-int avfilter_fill_frame_from_video_buffer_ref(AVFrame *frame,
- const AVFilterBufferRef *picref)
-{
- return avfilter_copy_buf_props(frame, picref);
-}
-
-int avfilter_fill_frame_from_buffer_ref(AVFrame *frame,
- const AVFilterBufferRef *ref)
-{
- return avfilter_copy_buf_props(frame, ref);
-}
-#endif