Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
71e99db8
Commit
71e99db8
authored
Dec 01, 2014
by
Thomas Guillem
Committed by
Ilkka Ollakka
Dec 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fps: don't export too common functions
Signed-off-by:
Ilkka Ollakka
<
ileoo@videolan.org
>
parent
23cf2698
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/video_filter/fps.c
modules/video_filter/fps.c
+6
-6
No files found.
modules/video_filter/fps.c
View file @
71e99db8
...
...
@@ -32,9 +32,9 @@
#include <vlc_plugin.h>
#include <vlc_filter.h>
int
Open
(
vlc_object_t
*
p_this
);
void
Close
(
vlc_object_t
*
p_this
);
picture_t
*
Filter
(
filter_t
*
p_filter
,
picture_t
*
p_picture
);
static
int
Open
(
vlc_object_t
*
p_this
);
static
void
Close
(
vlc_object_t
*
p_this
);
static
picture_t
*
Filter
(
filter_t
*
p_filter
,
picture_t
*
p_picture
);
#define CFG_PREFIX "fps-"
...
...
@@ -65,7 +65,7 @@ struct filter_sys_t
int
i_output_frame_interval
;
};
picture_t
*
Filter
(
filter_t
*
p_filter
,
picture_t
*
p_picture
)
static
picture_t
*
Filter
(
filter_t
*
p_filter
,
picture_t
*
p_picture
)
{
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
/* If input picture doesn't have actual valid timestamp,
...
...
@@ -122,7 +122,7 @@ picture_t *Filter( filter_t *p_filter, picture_t *p_picture)
return
last_pic
;
}
int
Open
(
vlc_object_t
*
p_this
)
static
int
Open
(
vlc_object_t
*
p_this
)
{
filter_t
*
p_filter
=
(
filter_t
*
)
p_this
;
filter_sys_t
*
p_sys
;
...
...
@@ -164,7 +164,7 @@ int Open( vlc_object_t *p_this)
return
VLC_SUCCESS
;
}
void
Close
(
vlc_object_t
*
p_this
)
static
void
Close
(
vlc_object_t
*
p_this
)
{
filter_t
*
p_filter
=
(
filter_t
*
)
p_this
;
if
(
p_filter
->
p_sys
->
p_previous_pic
)
...
...
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