diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-24 13:12:41 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-24 13:12:41 +0000 |
commit | c23abd21b7615179402b4e53767d3f7f45db4217 (patch) | |
tree | 8d0c26d89d55bd241a30fb596d229d6770341e8b /src/post/planar/Makefile.am | |
parent | a3b647075ea387ddf8b54ce32d839af6eac9811a (diff) | |
download | xine-lib-c23abd21b7615179402b4e53767d3f7f45db4217.tar.gz xine-lib-c23abd21b7615179402b4e53767d3f7f45db4217.tar.bz2 |
expand video filter - adds black borders to top and bottom of video to expand it to 4:3 ratio
CVS patchset: 4919
CVS date: 2003/05/24 13:12:41
Diffstat (limited to 'src/post/planar/Makefile.am')
-rw-r--r-- | src/post/planar/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/post/planar/Makefile.am b/src/post/planar/Makefile.am index d140b932b..1371d62d5 100644 --- a/src/post/planar/Makefile.am +++ b/src/post/planar/Makefile.am @@ -4,8 +4,13 @@ AM_CFLAGS = @ANSI_FLAGS@ libdir = $(XINE_PLUGINDIR)/post -lib_LTLIBRARIES = xineplug_post_invert.la +lib_LTLIBRARIES = xineplug_post_invert.la xineplug_post_expand.la xineplug_post_invert_la_SOURCES = invert.c xineplug_post_invert_la_LIBADD = $(XINE_LIB) xineplug_post_invert_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + +xineplug_post_expand_la_SOURCES = expand.c +xineplug_post_expand_la_LIBADD = $(XINE_LIB) +xineplug_post_expand_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + |