Coverage report: /home/ellis/comp/core/ffi/gstreamer/task.lisp
Kind | Covered | All | % |
expression | 0 | 6 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; task.lisp --- GStreamer FFI Tasks
6
(in-package :gstreamer)
8
(define-opaque gst-task-private)
9
(define-opaque gst-task-class)
11
(define-alien-enum (gst-task-state int)
16
(define-alien-type gst-task-thread-func (* t))
18
(define-alien-type gst-task
21
(state gst-task-state)
24
(func gst-task-thread-func)
26
(notify gdestroy-notify)
29
(priv (* gst-task-private))
30
(%gst-reserved (array gpointer #.+gst-padding+))))