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
79ddd264
Commit
79ddd264
authored
Jul 03, 2003
by
Simon Latapie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* logo.c : a little filter to put a PNG picture on video output (use mouse features :)
parent
1eeede38
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
492 additions
and
1 deletion
+492
-1
configure.ac
configure.ac
+12
-1
modules/video_filter/Modules.am
modules/video_filter/Modules.am
+1
-0
modules/video_filter/logo.c
modules/video_filter/logo.c
+479
-0
No files found.
configure.ac
View file @
79ddd264
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.2
2 2003/07/02 22:47:42 sam
Exp $
dnl $Id: configure.ac,v 1.2
3 2003/07/03 19:25:51 garf
Exp $
AC_INIT(vlc,0.6.0)
...
...
@@ -1928,6 +1928,17 @@ You also need to check that you have a libogg posterior to the 1.0 release.])],
])
fi
dnl
dnl Video Filters
dnl
dnl
dnl png
dnl
AC_CHECK_HEADERS(png.h, [
AX_ADD_LDFLAGS([logo],[-lpng])
AX_ADD_PLUGINS([logo])])
dnl
dnl Video plugins
dnl
...
...
modules/video_filter/Modules.am
View file @
79ddd264
...
...
@@ -7,4 +7,5 @@ SOURCES_clone = clone.c
SOURCES_crop = crop.c
SOURCES_motionblur = motionblur.c
SOURCES_osdtext = osd_text.c
SOURCES_logo = logo.c
noinst_HEADERS += filter_common.h
modules/video_filter/logo.c
0 → 100644
View file @
79ddd264
This diff is collapsed.
Click to expand it.
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