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
52f61054
Commit
52f61054
authored
Jun 24, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: remove dependency on filter
parent
d9dd59cd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
include/vlc_vout.h
include/vlc_vout.h
+1
-1
modules/access/screen/screen.c
modules/access/screen/screen.c
+1
-0
src/video_output/display.c
src/video_output/display.c
+1
-0
src/video_output/vout_internal.h
src/video_output/vout_internal.h
+2
-2
No files found.
include/vlc_vout.h
View file @
52f61054
...
...
@@ -26,8 +26,8 @@
#ifndef VLC_VOUT_H_
#define VLC_VOUT_H_ 1
#include <vlc_es.h>
#include <vlc_picture.h>
#include <vlc_filter.h>
#include <vlc_subpicture.h>
/**
...
...
modules/access/screen/screen.c
View file @
52f61054
...
...
@@ -33,6 +33,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_modules.h>
/* module_need for "video blending" */
#include <vlc_filter.h>
#include <vlc_url.h>
#include "screen.h"
...
...
src/video_output/display.c
View file @
52f61054
...
...
@@ -35,6 +35,7 @@
#include <vlc_vout.h>
#include <vlc_block.h>
#include <vlc_modules.h>
#include <vlc_filter.h>
#include <libvlc.h>
...
...
src/video_output/vout_internal.h
View file @
52f61054
...
...
@@ -118,8 +118,8 @@ struct vout_thread_sys_t
vlc_mutex_t
lock
;
char
*
configuration
;
video_format_t
format
;
filter_chain_t
*
chain_static
;
filter_chain_t
*
chain_interactive
;
struct
filter_chain_t
*
chain_static
;
struct
filter_chain_t
*
chain_interactive
;
}
filter
;
/* */
...
...
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