2006-11-08 01:40:27 +00:00
|
|
|
What to do when a plugin is missing
|
|
|
|
===================================
|
|
|
|
|
|
|
|
We only discuss playback pipelines for now.
|
|
|
|
|
|
|
|
A three step process:
|
|
|
|
|
2006-11-08 02:04:52 +00:00
|
|
|
1) GStreamer level
|
2006-11-08 01:40:27 +00:00
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
- elements will use a "missing-plugin" element message to report missing
|
|
|
|
plugins, with the following fields set:
|
2006-11-08 01:40:27 +00:00
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
- type: (string) { "urisource", "urisink", "decoder", "encoder", "element" }
|
|
|
|
(we do not distinguish between demuxer/decoders/parsers etc.)
|
|
|
|
- detail: (string) or (caps) depending on the type { ANY }
|
|
|
|
ex: "mms, "mmsh", "audio/x-mp3,rate=48000,..."
|
|
|
|
- name: (string) { ANY }
|
|
|
|
ex: "MMS protocol handler",..
|
2006-11-08 01:40:27 +00:00
|
|
|
|
|
|
|
- missing uri handler
|
|
|
|
|
|
|
|
ex. mms://foo.bar/file.asf
|
|
|
|
|
|
|
|
When no protocol handler is installed for mms://, the application will not be
|
|
|
|
able to instantiate an element for that uri (gst_element_make_from_uri()
|
|
|
|
returns NULL).
|
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
Playbin will post a "missing-plugin" element message with the type set to
|
2006-11-08 01:40:27 +00:00
|
|
|
"urisource", detail set to "mms". Optionally the friendly name can be filled
|
|
|
|
in as well.
|
|
|
|
|
|
|
|
- missing typefind function
|
|
|
|
|
|
|
|
We don't recognize the type of the file, this should normally not happen
|
2006-11-08 02:04:52 +00:00
|
|
|
because all the typefinders are in the basic GStreamer installation.
|
2006-11-08 01:40:27 +00:00
|
|
|
There is not much useful information we can give about how to resolve this
|
|
|
|
issue. It is possible to use the first N bytes of the data to determine the
|
|
|
|
type (and needed plugin) on the server. We don't explore this option in this
|
|
|
|
document yet, but the proposal is flexible enough to accomodate this in the
|
|
|
|
future should the need arise.
|
|
|
|
|
|
|
|
- missing demuxer
|
|
|
|
|
|
|
|
Typically after running typefind on the data we determine the type of the
|
2006-11-08 19:27:15 +00:00
|
|
|
file. If there is no plugin found for the type, a "missing-plugin" element
|
|
|
|
message is posted by decodebin with the following fields: Type set to
|
|
|
|
"decoder", detail set to the caps for witch no plugin was found. Optionally
|
|
|
|
the friendly name can be filled in as well.
|
2006-11-08 01:40:27 +00:00
|
|
|
|
|
|
|
- missing decoder
|
|
|
|
|
|
|
|
The demuxer will dynamically create new pads with specific caps while it
|
|
|
|
figures out the contents of the container format. Decodebin tries to find the
|
|
|
|
decoders for these formats in the registry. If there is no decoder found, a
|
2006-11-08 19:27:15 +00:00
|
|
|
"missing-plugin" element message is posted by decodebin with the following
|
|
|
|
fields: Type set to "decoder", detail set to the caps for which no plugin
|
|
|
|
was found. Optionally the friendly name can be filled in as well. There is
|
|
|
|
no distinction made between the missing demuxer and decoder at the
|
|
|
|
application level.
|
2006-11-08 01:40:27 +00:00
|
|
|
|
|
|
|
- missing element
|
|
|
|
|
|
|
|
Decodebin and playbin will create a set of helper elements when they set up
|
|
|
|
their decoding pipeline. These elements are typically colorspace, sample rate,
|
|
|
|
audio sinks,... Their presence on the system is required for the functionality
|
|
|
|
of decodebin. It is typically a package dependency error if they are not
|
2006-11-08 19:27:15 +00:00
|
|
|
present but in case of a corrupted system the following "missing-plugin"
|
|
|
|
element message will be emitted: type set to "element", detail set to the
|
|
|
|
element factory name and the friendly name optionally set to a description
|
|
|
|
of the element's functionality in the decoding pipeline.
|
2006-11-08 01:40:27 +00:00
|
|
|
|
2006-11-08 02:04:52 +00:00
|
|
|
Except for reporting the missing plugins, no further policy is enforced at the
|
|
|
|
GStreamer level. It is up to the application to decide whether a missing
|
2006-11-08 01:40:27 +00:00
|
|
|
plugin constitutes a problem or not.
|
|
|
|
|
2006-11-08 02:04:52 +00:00
|
|
|
|
|
|
|
2) application level
|
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
The application's job is to listen for the "missing-plugin" element messages
|
|
|
|
and to decide on a policy to handle them. Following cases exist:
|
2006-11-08 02:04:52 +00:00
|
|
|
|
|
|
|
- partially missing plugins
|
|
|
|
|
|
|
|
The application will be able to complete a state change to PAUSED but there
|
2006-11-08 19:27:15 +00:00
|
|
|
will be a "missing-plugin" element message on the GstBus.
|
2006-11-08 02:04:52 +00:00
|
|
|
|
|
|
|
This means that it will be possible to play back part of the media file but not
|
|
|
|
all of it.
|
|
|
|
|
|
|
|
For example: suppose we have an .avi file with mp3 audio and divx video. If we
|
|
|
|
have the mp3 audio decoder but not the divx video decoder, it will be possible
|
|
|
|
to play only the audio part but not the video part. For an audio playback
|
|
|
|
application, this is not a problem but a video player might want to decide on:
|
|
|
|
|
|
|
|
- require the use to install the additionally required plugins.
|
|
|
|
- inform the user that only the audio will be played back
|
|
|
|
- ask the user if it should download the additional codec or only play the
|
|
|
|
audio part.
|
|
|
|
- ...
|
|
|
|
|
|
|
|
- completely unplayable stream
|
|
|
|
|
|
|
|
The application will receive an ERROR message from GStreamer informing it that
|
|
|
|
playback stopped (before it could reach PAUSED). This happens because none of
|
2006-12-26 15:55:24 +00:00
|
|
|
the streams is connected to a decoder. The error code and domain should be one
|
|
|
|
of the following in this case:
|
|
|
|
- GST_CORE_ERROR_MISSING_PLUGIN (domain: GST_CORE_ERROR)
|
|
|
|
- GST_STREAM_ERROR_CODEC_NOT_FOUND (domain: GST_STREAM_ERROR)
|
2006-11-08 02:04:52 +00:00
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
The application can then see that there are a set of "missing-plugin" element
|
|
|
|
messages on the GstBus and can decide to trigger the download procedure. It
|
|
|
|
does that as described in the following section.
|
2006-11-08 02:04:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
3) Plugin download stage
|
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
At this point the application has
|
|
|
|
- collected one or more "missing-plugin" element messages
|
|
|
|
- made a decision that additional plugins should be installed
|
|
|
|
|
|
|
|
It will call a GStreamer utility function to convert each "missing-plugin"
|
|
|
|
message into an identifier string describing the missing capability.
|
|
|
|
|
|
|
|
The application will then pass these strings to an external libgimmecodec
|
|
|
|
to initiate the download. Error handling and progress reporting etc. will
|
|
|
|
all be handled using libgimmecodec's API.
|
|
|
|
|
|
|
|
When new plugins have been installed, the application will have to initiate
|
|
|
|
a re-scan of the GStreamer plugin registry.
|
|
|
|
|
|
|
|
|
|
|
|
4) Format of the (UTF-8) string ID passed to the external installer system
|
|
|
|
|
|
|
|
The string is made up of several fields, separated by '|' characters.
|
|
|
|
The fields are:
|
|
|
|
|
2006-12-26 15:55:24 +00:00
|
|
|
- plugin system identifier, ie. "gstreamer.net"
|
|
|
|
This identifier determines the format of the rest of the detail string.
|
|
|
|
Automatic plugin installers should not process detail strings with
|
|
|
|
unknown identifiers. This allows other plugin-based libraries to use
|
|
|
|
the same mechanism for their automatic plugin installation needs, or
|
|
|
|
for the format to be changed should it turn out to be insufficient.
|
|
|
|
|
|
|
|
- plugin system version, e.g. "0.10"
|
|
|
|
This is required so that when there is a GStreamer-0.12 or GStreamer-1.0
|
|
|
|
at somem point in future, the different major versions can still co-exist
|
|
|
|
and use the same plugin install mechanism in the same way.
|
|
|
|
|
|
|
|
- application identifier, e.g. "totem"
|
|
|
|
This may also be in the form of "pid/12345" if the program name can't
|
|
|
|
be obtained for some reason.
|
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
- human-readable localised description of the required component,
|
|
|
|
e.g. "Vorbis audio decoder"
|
2006-12-26 15:55:24 +00:00
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
- identifier string for the required component, e.g.
|
|
|
|
- urisource-$(PROTOCOL_REQUIRED)
|
|
|
|
e.g. urisource-http or urisource-mms
|
|
|
|
- element-$(ELEMENT_REQUIRED),
|
|
|
|
e.g. element-ffmpegcolorspace
|
|
|
|
- decoder-$(CAPS_REQUIRED)
|
|
|
|
e.g. decoder-audio/x-vorbis or decoder-application/ogg
|
|
|
|
- encoder-$(CAPS_REQUIRED)
|
|
|
|
e.g. encoder-audio/x-vorbis
|
|
|
|
|
2006-12-26 15:55:24 +00:00
|
|
|
- optional further fields not yet specified
|
|
|
|
|
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
An entire ID string might then look like this, for example:
|
|
|
|
|
|
|
|
gstreamer.net|0.10|totem|Vorbis audio decoder|decoder-audio/x-vorbis
|
2006-12-26 15:55:24 +00:00
|
|
|
|
|
|
|
Plugin installers parsing this ID string should expect further fields also
|
|
|
|
separated by '|' symbols and either ignore them, warn the user, or error
|
|
|
|
out when encountering them.
|
2006-11-08 01:40:27 +00:00
|
|
|
|
2006-11-08 19:27:15 +00:00
|
|
|
The human-readable description string will come from a new utility
|
|
|
|
library that yet to be added to gst-plugins-base and which can then also
|
|
|
|
be used by demuxers to find out the codec names for taglists from given
|
|
|
|
caps in a unified and consistent way.
|
2006-12-26 15:55:24 +00:00
|
|
|
|
|
|
|
There will also be API for applications to create these detail strings from
|
|
|
|
a given missing-plugin message.
|