blob: 2cf65429faac6914abb92a99d9f78fb9c965da65 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import sys
import gdb
# Update module path.
dir_ = '@DATADIR@/gstreamer-@GST_API_VERSION@/gdb'
if not dir_ in sys.path:
sys.path.insert(0, dir_)
from gst_gdb import register
register (gdb.current_objfile ())
|