summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2018-06-24 19:25:37 +0100
committerMark Thompson <sw@jkqxz.net>2018-06-24 19:39:01 +0100
commitd4d29052c3ce585526f06e802839e805495a5353 (patch)
tree046396c7a39c328825a9cc8521b988bec347d129 /libavfilter
parent7ff5310068d9627868339dfa1804f9244647354b (diff)
lavfi/framesync: Add namespace prefix to framesync_get_class
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/framesync.c2
-rw-r--r--libavfilter/framesync.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/framesync.c b/libavfilter/framesync.c
index da12c58a61..22d3f091a3 100644
--- a/libavfilter/framesync.c
+++ b/libavfilter/framesync.c
@@ -61,7 +61,7 @@ enum {
static int consume_from_fifos(FFFrameSync *fs);
-const AVClass *framesync_get_class(void)
+const AVClass *ff_framesync_get_class(void)
{
return &framesync_class;
}
diff --git a/libavfilter/framesync.h b/libavfilter/framesync.h
index abf3bf552b..37743cccb7 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 = { \