Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
d4d29052
Commit
d4d29052
authored
Jun 24, 2018
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/framesync: Add namespace prefix to framesync_get_class
parent
7ff53100
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
framesync.c
libavfilter/framesync.c
+1
-1
framesync.h
libavfilter/framesync.h
+3
-3
No files found.
libavfilter/framesync.c
View file @
d4d29052
...
@@ -61,7 +61,7 @@ enum {
...
@@ -61,7 +61,7 @@ enum {
static
int
consume_from_fifos
(
FFFrameSync
*
fs
);
static
int
consume_from_fifos
(
FFFrameSync
*
fs
);
const
AVClass
*
framesync_get_class
(
void
)
const
AVClass
*
f
f_f
ramesync_get_class
(
void
)
{
{
return
&
framesync_class
;
return
&
framesync_class
;
}
}
...
...
libavfilter/framesync.h
View file @
d4d29052
...
@@ -211,7 +211,7 @@ typedef struct FFFrameSync {
...
@@ -211,7 +211,7 @@ typedef struct FFFrameSync {
/**
/**
* Get the class for the framesync object.
* Get the class for the framesync object.
*/
*/
const
AVClass
*
framesync_get_class
(
void
);
const
AVClass
*
f
f_f
ramesync_get_class
(
void
);
/**
/**
* Pre-initialize a frame sync structure.
* Pre-initialize a frame sync structure.
...
@@ -304,11 +304,11 @@ static int name##_framesync_preinit(AVFilterContext *ctx) { \
...
@@ -304,11 +304,11 @@ static int name##_framesync_preinit(AVFilterContext *ctx) { \
return 0; \
return 0; \
} \
} \
static const AVClass *name##_child_class_next(const AVClass *prev) { \
static const AVClass *name##_child_class_next(const AVClass *prev) { \
return prev ? NULL : framesync_get_class(); \
return prev ? NULL : f
f_f
ramesync_get_class(); \
} \
} \
static void *name##_child_next(void *obj, void *prev) { \
static void *name##_child_next(void *obj, void *prev) { \
context *s = obj; \
context *s = obj; \
s->fs.class = framesync_get_class();
/* FIXME */
\
s->fs.class = f
f_f
ramesync_get_class();
/* FIXME */
\
return prev ? NULL : &s->field; \
return prev ? NULL : &s->field; \
} \
} \
static const AVClass name##_class = { \
static const AVClass name##_class = { \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment