mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
2a4bfc0fc8
Original commit message from CVS: A simple video scaler as a library and an Element. Also a little non working mpeg2 to mpeg1 converter (still struggling with the quantisation).
15 lines
498 B
Makefile
15 lines
498 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstvideoscale.la
|
|
|
|
libgstvideoscale_la_SOURCES = gstvideoscale.c
|
|
|
|
libgstvideoscaleincludedir = $(includedir)/gst/libs/gstvideoscale.h
|
|
libgstvideoscaleinclude_HEADERS = gstvideoscale.h
|
|
|
|
noinst_HEADERS = yuv2rgb.h
|
|
|
|
CFLAGS += -Wall -O2 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|