/* * Copyright 2014 (c) Anna Schumaker. */ #include static GSTDriver *gst_driver; void init_gst() { gst_driver = new GSTDriver(); } void quit_gst() { delete gst_driver; }