[FFmpeg-cvslog] lavfi/select: use exported dsputil_init function.

Clément Bœsch git at videolan.org
Tue Jun 5 07:29:23 CEST 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Tue Jun  5 07:27:41 2012 +0200| [44be67595db74340495eca4534faf56d54e2a028] | committer: Clément Bœsch

lavfi/select: use exported dsputil_init function.

This is the deprecated version of the function but it is exported, so it
should fix the shared FATE box.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=44be67595db74340495eca4534faf56d54e2a028
---

 libavfilter/vf_select.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c
index 0c1b509..be0bfc9 100644
--- a/libavfilter/vf_select.c
+++ b/libavfilter/vf_select.c
@@ -177,7 +177,7 @@ static int config_input(AVFilterLink *inlink)
         select->avctx = avcodec_alloc_context3(NULL);
         if (!select->avctx)
             return AVERROR(ENOMEM);
-        ff_dsputil_init(&select->c, select->avctx);
+        dsputil_init(&select->c, select->avctx);
     }
     return 0;
 }



More information about the ffmpeg-cvslog mailing list