gstreamer/tracer/Makefile
Stefan Sauer 896201af35 tracer: add new python library to process tracer logs
This is the beginning of a python library for wrting tools that process tracer
logs. This library contains a structure parser written in python to avoid the
dependency on gobject introspection (and the slowness and non pythoness that
comes with it).
2016-12-20 08:24:57 +01:00

13 lines
305 B
Makefile

TEST_DATA = \
logs/trace.latency.log
all:
logs/trace.latency.log:
mkdir -p logs; \
GST_DEBUG="GST_TRACER:7" GST_TRACERS=latency GST_DEBUG_FILE=$@ \
gst-launch-1.0 -q audiotestsrc num-buffers=10 wave=silence ! audioconvert ! autoaudiosink
check: $(TEST_DATA)
python3 -m unittest discover tracer