]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/framesync: Add namespace prefix to framesync_get_class
authorMark Thompson <sw@jkqxz.net>
Sun, 24 Jun 2018 18:25:37 +0000 (19:25 +0100)
committerMark Thompson <sw@jkqxz.net>
Sun, 24 Jun 2018 18:39:01 +0000 (19:39 +0100)
libavfilter/framesync.c
libavfilter/framesync.h

index da12c58a618aaed8114d803d4b8938921ef71f9c..22d3f091a3f4aa8cf9fa320fc211f8adc38c03b3 100644 (file)
@@ -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;
 }
index abf3bf552b99c538e1d948209e95ee558f8c58b6..37743cccb72d015b5e9c6a296e364a3f33c86f61 100644 (file)
@@ -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 = { \