mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
b1d87b1ffb
Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/pango/Makefile.am: * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init), (gst_clock_overlay_render_time), (gst_clock_overlay_get_text), (gst_clock_overlay_class_init), (gst_clock_overlay_init): * ext/pango/gstclockoverlay.h: * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init), (gst_text_overlay_get_text), (gst_text_overlay_class_init), (gst_text_overlay_finalize), (gst_text_overlay_init), (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps), (gst_text_overlay_text_pad_linked), (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_set_property), (gst_text_overlay_getcaps), (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420), (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text), (gst_text_overlay_push_frame), (gst_text_overlay_pop_video), (gst_text_overlay_pop_text), (gst_text_overlay_collected), (gst_text_overlay_change_state), (plugin_init): * ext/pango/gsttextoverlay.h: * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init), (gst_time_overlay_render_time), (gst_time_overlay_get_text), (gst_time_overlay_class_init), (gst_time_overlay_init): * ext/pango/gsttimeoverlay.h: Port pango-based textoverlay, timeoverlay and textrender to 0.9 and add background shading and text wrapping modes. Make timoverlay derive from textoverlay. Also add new clockoverlay element.
136 lines
1.4 KiB
Makefile
136 lines
1.4 KiB
Makefile
if USE_AALIB
|
|
AALIB_DIR = aalib
|
|
else
|
|
AALIB_DIR =
|
|
endif
|
|
|
|
if USE_CAIRO
|
|
CAIRO_DIR = cairo
|
|
else
|
|
CAIRO_DIR =
|
|
endif
|
|
|
|
if USE_ESD
|
|
ESD_DIR = esd
|
|
else
|
|
ESD_DIR =
|
|
endif
|
|
|
|
if USE_FLAC
|
|
FLAC_DIR = flac
|
|
else
|
|
FLAC_DIR =
|
|
endif
|
|
|
|
if USE_GCONF
|
|
GCONF_DIR = gconf
|
|
else
|
|
GCONF_DIR =
|
|
endif
|
|
|
|
# if USE_GDK_PIXBUF
|
|
# GDK_PIXBUF_DIR = gdk_pixbuf
|
|
# else
|
|
GDK_PIXBUF_DIR =
|
|
# endif
|
|
|
|
if USE_JPEG
|
|
JPEG_DIR = jpeg
|
|
else
|
|
JPEG_DIR =
|
|
endif
|
|
|
|
# if USE_LADSPA
|
|
# LADSPA_DIR = ladspa
|
|
# else
|
|
LADSPA_DIR =
|
|
# endif
|
|
|
|
if USE_LIBCACA
|
|
LIBCACA_DIR = libcaca
|
|
else
|
|
LIBCACA_DIR =
|
|
endif
|
|
|
|
if USE_LIBDV
|
|
LIBDV_DIR = dv
|
|
else
|
|
LIBDV_DIR =
|
|
endif
|
|
|
|
# if USE_LIBMNG
|
|
# LIBMNG_DIR = libmng
|
|
# else
|
|
LIBMNG_DIR =
|
|
# endif
|
|
|
|
if USE_LIBPNG
|
|
LIBPNG_DIR = libpng
|
|
else
|
|
LIBPNG_DIR =
|
|
endif
|
|
|
|
# if USE_MIKMOD
|
|
# MIKMOD_DIR = mikmod
|
|
# else
|
|
MIKMOD_DIR =
|
|
# endif
|
|
|
|
if USE_PANGO
|
|
PANGO_DIR = pango
|
|
else
|
|
PANGO_DIR =
|
|
endif
|
|
|
|
if USE_DV1394
|
|
DV1394_DIR = raw1394
|
|
else
|
|
DV1394_DIR =
|
|
endif
|
|
|
|
if USE_SHOUT2
|
|
SHOUT2_DIR = shout2
|
|
else
|
|
SHOUT2_DIR =
|
|
endif
|
|
|
|
if USE_SPEEX
|
|
SPEEX_DIR = speex
|
|
else
|
|
SPEEX_DIR =
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
$(AALIB_DIR) \
|
|
$(CAIRO_DIR) \
|
|
$(DV1394_DIR) \
|
|
$(ESD_DIR) \
|
|
$(FLAC_DIR) \
|
|
$(GCONF_DIR) \
|
|
$(GDK_PIXBUF_DIR) \
|
|
$(JPEG_DIR) \
|
|
$(LADSPA_DIR) \
|
|
$(LIBCACA_DIR) \
|
|
$(LIBDV_DIR) \
|
|
$(LIBMNG_DIR) \
|
|
$(LIBPNG_DIR) \
|
|
$(MIKMOD_DIR) \
|
|
$(PANGO_DIR) \
|
|
$(SHOUT2_DIR) \
|
|
$(SPEEX_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
aalib \
|
|
cairo \
|
|
dv \
|
|
esd \
|
|
flac \
|
|
gconf \
|
|
jpeg \
|
|
ladspa \
|
|
libcaca \
|
|
libpng \
|
|
pango \
|
|
raw1394 \
|
|
shout2 \
|
|
speex
|