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
cbecdf6a
Commit
cbecdf6a
authored
Oct 23, 2015
by
Thomas Guillem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules: add Evas video output
parent
99450534
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1105 additions
and
0 deletions
+1105
-0
NEWS
NEWS
+1
-0
configure.ac
configure.ac
+19
-0
modules/MODULES_LIST
modules/MODULES_LIST
+1
-0
modules/video_output/Makefile.am
modules/video_output/Makefile.am
+10
-0
modules/video_output/evas.c
modules/video_output/evas.c
+1073
-0
po/POTFILES.in
po/POTFILES.in
+1
-0
No files found.
NEWS
View file @
cbecdf6a
...
...
@@ -93,6 +93,7 @@ Video ouput:
* Renamed the Direct3D output module to Direct3D9
* Added Direct3D11 video mode supporting both Windows desktop and WinRT modes,
supporting subpicture blending and hardware acceleration
* EFL Evas video output
Text renderer:
* CTL support through Harfbuzz in the Freetype module
...
...
configure.ac
View file @
cbecdf6a
...
...
@@ -3463,6 +3463,25 @@ if test "${enable_mmal}" != "no"; then
fi
AM_CONDITIONAL([HAVE_MMAL], [test "${have_mmal}" = "yes"])
dnl
dnl evas plugin
dnl
AC_ARG_ENABLE(evas,
[AS_HELP_STRING([--enable-evas],
[use evas output module (default disabled)])])
have_evas="no"
AS_IF([test "${enable_evas}" = "yes"], [
PKG_CHECK_MODULES(EVAS, [evas >= 1.15.99 ecore >= 1.15.99], [
have_evas="yes"
AC_DEFINE([HAVE_EVAS], [1], [Define to 1 if evas is enabled.])
],[
AS_IF([test "x${enable_evas}" != "x"], [
AC_MSG_ERROR([$EVAS_PKG_ERRORS. libevas and libecore 1.15.99 or later required.])
])
])
])
AM_CONDITIONAL([HAVE_EVAS], [test "${have_evas}" = "yes"])
dnl
dnl Audio plugins
dnl
...
...
modules/MODULES_LIST
View file @
cbecdf6a
...
...
@@ -134,6 +134,7 @@ $Id$
* equalizer: a equalizer audio filter
* erase: Logo erase video filter
* es: input module for MPEG ES decapsulation
* evas: EFL Evas video output
* export: playlist export module
* extract: Extract RGB components video filter
* faad: AAC decoder using libfaad2
...
...
modules/video_output/Makefile.am
View file @
cbecdf6a
...
...
@@ -340,6 +340,16 @@ EXTRA_LTLIBRARIES += libcaca_plugin.la
vout_LTLIBRARIES
+=
$(LTLIBcaca)
### EFL Evas video output ###
libevas_plugin_la_SOURCES
=
video_output/evas.c
libevas_plugin_la_CFLAGS
=
$(AM_CFLAGS)
$(EVAS_CFLAGS)
libevas_plugin_la_LIBADD
=
$(EVAS_LIBS)
libevas_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
-rpath
'
$(voutdir)
'
if
HAVE_EVAS
vout_LTLIBRARIES
+=
libevas_plugin.la
endif
### Common ###
libvdummy_plugin_la_SOURCES
=
video_output/vdummy.c
libvmem_plugin_la_SOURCES
=
video_output/vmem.c
...
...
modules/video_output/evas.c
0 → 100644
View file @
cbecdf6a
This diff is collapsed.
Click to expand it.
po/POTFILES.in
View file @
cbecdf6a
...
...
@@ -1157,6 +1157,7 @@ modules/video_output/caopengllayer.m
modules/video_output/decklink.cpp
modules/video_output/directfb.c
modules/video_output/drawable.c
modules/video_output/evas.c
modules/video_output/egl.c
modules/video_output/fb.c
modules/video_output/gl.c
...
...
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