@swesterfeld commented on this pull request.
> + void
+ shutdown_callback()
+ {
+ is_down_ = true;
+ }
+public:
+ explicit JackPcmDriver (const String &devid) : PcmDriver (devid) {}
+ static PcmDriverP
+ create (const String &devid)
+ {
+ auto pdriverp = std::make_shared<JackPcmDriver> (devid);
+ return pdriverp;
+ }
+ ~JackPcmDriver()
+ {
+ }
Right. Fixed.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.