mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
e505f6257c
Renders buffers using the CALayer subclass AVSampleBufferDisplayLayer which can be placed inside a Core Animation render tree.
14 lines
352 B
Makefile
14 lines
352 B
Makefile
noinst_PROGRAMS = avsamplesink
|
|
|
|
avsamplesink_SOURCES = main.m
|
|
|
|
avsamplesink_OBJCFLAGS= \
|
|
$(GST_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
avsamplesink_LDADD= \
|
|
$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS)
|
|
avsamplesink_LDFLAGS = \
|
|
-Wl,-framework -Wl,AVFoundation \
|
|
-Wl,-framework -Wl,QuartzCore \
|
|
-Wl,-framework -Wl,Cocoa
|
|
avsamplesink_LIBTOOLFLAGS = --tag=CC
|