Coverage report: /home/ellis/comp/core/ffi/gstreamer/pipeline.lisp

KindCoveredAll%
expression05 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; pipeline.lisp --- Gst Pipelines
2
 
3
 ;; 
4
 
5
 ;;; Code:
6
 (in-package :gstreamer)
7
 
8
 (define-alien-type gst-pipeline
9
     (struct gst-pipeline
10
       (bin gst-bin)
11
       (fixed-clock (* gst-clock))
12
       (stream-time gst-clock-time)
13
       (delay gst-clock-time)
14
       (priv (* t))
15
       (%gst-reserved (array gpointer #.+gst-padding+))))
16
 
17
 (defar gst-pipeline-get-type gtype)
18
 (defar gst-pipeline-new (* gst-element) (name c-string))
19
 (defar gst-pipeline-get-bus (* gst-bus) (pipeline (* gst-pipeline)))