Kind | Covered | All | % |
expression | 0 | 3 | 0.0 |
branch | 0 | 0 | nil |
1
;;; pkg.lisp --- DSP Packages
2
3
;;
4
5
;;; Code:
6
(defpackage :dsp/core
7
(:use :cl :std :log :config)
8
(:export
9
#:media-codec
10
#:audio-codec
11
#:video-codec
12
#:media-meta
13
#:av-meta
14
#:media-file
15
#:audio-file
16
#:video-file
17
#:image-file
18
#:*media-directory*
19
#:*default-media-probe*
20
#:dsp-condition
21
#:dsp-error
22
#:audio-config
23
#:audio-system-config
24
#:video-config
25
#:video-system-config))
26
27
(defpackage :dsp/av
28
(:use :cl :std :dsp/core :ffmpeg :sb-alien :dat/mime :id)
29
(:export
30
:av-error
31
#:with-av-codec-context
32
#:with-av-format-context
33
#:av-dictionary-to-hash-table
34
#:av-dictionary-alist
35
#:with-av-parser
36
#:av-context-metadata
37
#:media-file-metadata
38
#:media-file-format
39
#:media-file-codecs
40
#:media-file-stream-count
41
#:load-av))
42
43
(defpackage :dsp/gst
44
(:use :cl :std :dsp/core :gstreamer :sb-alien)
45
(:export
46
:gst-condition
47
:gst-error
48
#:load-gst
49
#:gst-pipe))