X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fframesync.h;h=37743cccb72d015b5e9c6a296e364a3f33c86f61;hb=6e1913a02e6fffa56b597a4a6e6a1f3fd6aca72e;hp=abf3bf552b99c538e1d948209e95ee558f8c58b6;hpb=4339c94364f8ff143d051fcace3e5801625db607;p=ffmpeg diff --git a/libavfilter/framesync.h b/libavfilter/framesync.h index abf3bf552b9..37743cccb72 100644 --- a/libavfilter/framesync.h +++ b/libavfilter/framesync.h @@ -211,7 +211,7 @@ typedef struct FFFrameSync { /** * Get the class for the framesync object. */ -const AVClass *framesync_get_class(void); +const AVClass *ff_framesync_get_class(void); /** * Pre-initialize a frame sync structure. @@ -304,11 +304,11 @@ static int name##_framesync_preinit(AVFilterContext *ctx) { \ return 0; \ } \ static const AVClass *name##_child_class_next(const AVClass *prev) { \ - return prev ? NULL : framesync_get_class(); \ + return prev ? NULL : ff_framesync_get_class(); \ } \ static void *name##_child_next(void *obj, void *prev) { \ context *s = obj; \ - s->fs.class = framesync_get_class(); /* FIXME */ \ + s->fs.class = ff_framesync_get_class(); /* FIXME */ \ return prev ? NULL : &s->field; \ } \ static const AVClass name##_class = { \