2000-08-16 21:38:57 +00:00
|
|
|
Overview
|
|
|
|
Introduction
|
|
|
|
(creating multimedia apps)
|
|
|
|
(pipeline/plugin based)
|
|
|
|
|
|
|
|
Motivation
|
|
|
|
(multitude of duplicate code)
|
|
|
|
(mostly focused on one goal)
|
|
|
|
(reinvent plugin mechanisms)
|
|
|
|
(network transparency?)
|
|
|
|
(catch up with Windows(tm) world)
|
|
|
|
|
|
|
|
Goals
|
|
|
|
(clean and powerfull)
|
|
|
|
(building graphs)
|
|
|
|
(building plugins)
|
|
|
|
(object oriented)
|
|
|
|
(using GTK+ object model)
|
|
|
|
(extensible)
|
|
|
|
(alow binary only plugins)
|
|
|
|
(alow high performance)
|
|
|
|
(HW acceleration)
|
|
|
|
(efficient memory use)
|
|
|
|
(kernel buffers etc..)
|
|
|
|
|
|
|
|
Basic concepts
|
|
|
|
elements
|
|
|
|
(what is it)
|
|
|
|
(types) sink, src, filter
|
|
|
|
(have pads)
|
2003-01-24 18:08:39 +00:00
|
|
|
linking elements
|
2000-08-16 21:38:57 +00:00
|
|
|
bin
|
|
|
|
(can contain elements)
|
2000-08-19 16:36:24 +00:00
|
|
|
pipeline (a complete graph)
|
|
|
|
thread (theaded operation)
|
2000-08-16 21:38:57 +00:00
|
|
|
buffers
|
|
|
|
(pass between elements)
|
|
|
|
(contains data)
|
|
|
|
(can cary metadata)
|
|
|
|
(use refcounting)
|
|
|
|
element states
|
|
|
|
(null)
|
|
|
|
(ready)
|
|
|
|
(paused)
|
|
|
|
(playing)
|
|
|
|
|
|
|
|
Building apps
|
|
|
|
helloworld
|
|
|
|
(fdsrc->mp3decoder->audiosink)
|
|
|
|
(step by step explanation)
|
2000-08-19 16:36:24 +00:00
|
|
|
More on factories
|
2000-08-21 21:20:38 +00:00
|
|
|
problems with helloworld
|
|
|
|
MIME types
|
|
|
|
GStreamer types
|
|
|
|
Basic types
|
2000-08-22 21:18:18 +00:00
|
|
|
Your second application
|
|
|
|
|
2000-08-21 21:20:38 +00:00
|
|
|
|
2000-08-16 21:38:57 +00:00
|
|
|
|
|
|
|
advanced concepts
|
|
|
|
threads
|
|
|
|
queues
|
|
|
|
cothreads
|
|
|
|
dynamic pipeline construction
|
|
|
|
ghost pads
|
|
|
|
type detection
|
|
|
|
utility functions
|
|
|
|
|
|
|
|
XML in GStreamer
|
|
|
|
(saving)
|
|
|
|
(loading a pipeline)
|
|
|
|
|
|
|
|
Plugin development
|
2000-08-22 21:18:18 +00:00
|
|
|
plugin types
|
|
|
|
chain based
|
|
|
|
loop based
|
2000-08-16 21:38:57 +00:00
|
|
|
buffers
|
|
|
|
metadata
|
|
|
|
subbufers
|
|
|
|
adding pads
|
|
|
|
libraries
|
2000-08-22 21:18:18 +00:00
|
|
|
plugin registry
|
|
|
|
types
|
|
|
|
type detection
|
|
|
|
QoS messages
|
|
|
|
clocks
|
2000-08-16 21:38:57 +00:00
|
|
|
|
|
|
|
GStreamer programs
|
|
|
|
editor
|
|
|
|
gstplay
|
|
|
|
|
|
|
|
|