mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 22:46:35 +00:00
15 lines
288 B
Python
15 lines
288 B
Python
class Analyzer(object):
|
|
"""
|
|
Base class for a gst tracer analyzer.
|
|
|
|
Will be used in conjunction with a AnalysisRunner.
|
|
"""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def handle_tracer_class(self, event):
|
|
pass
|
|
|
|
def handle_tracer_entry(self, event):
|
|
pass
|