X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=subprojects%2Fgst-docs%2Fmarkdown%2Fadditional%2Fdesign%2Fmissing-plugins.md;h=7d8ab86cf8488ce2ea89906f128ab03c2888a028;hb=c95a7ab1cae56eb485992f3d5ae033baafa4e7a2;hp=19990df48a987b1c4c9b8b001a9c51bf3004b097;hpb=a7f54159b724d4966686c84a1f93688ef157e3f2;p=platform%2Fupstream%2Fgstreamer.git diff --git a/subprojects/gst-docs/markdown/additional/design/missing-plugins.md b/subprojects/gst-docs/markdown/additional/design/missing-plugins.md index 19990df..7d8ab86 100644 --- a/subprojects/gst-docs/markdown/additional/design/missing-plugins.md +++ b/subprojects/gst-docs/markdown/additional/design/missing-plugins.md @@ -17,21 +17,21 @@ missing plugins, with the following fields set: * **`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,…" +* **`detail`**: (string) or (caps) depending on the type { ANY } ex: "rtsp, +"rtspt", "audio/x-mp3,rate=48000,…" -* **`name`**: (string) { ANY } ex: "MMS protocol handler",.. +* **`name`**: (string) { ANY } ex: "RTSP protocol handler",.. ### missing uri handler -ex. mms://foo.bar/file.asf +ex. rtsp://some.camera/stream1 -When no protocol handler is installed for mms://, the application will not be +When no protocol handler is installed for rtsp://, the application will not be able to instantiate an element for that uri (`gst_element_make_from_uri()` returns NULL). Playbin will post a `missing-plugin` element message with the type set to -"urisource", detail set to "mms". Optionally the friendly name can be filled +"urisource", detail set to "rtsp". Optionally the friendly name can be filled in as well. ### missing typefind function @@ -162,7 +162,7 @@ plugin install mechanism in the same way. - identifier string for the required component, e.g. -- urisource-(`PROTOCOL_REQUIRED`) e.g. `urisource-http` or `urisource-mms` +- urisource-(`PROTOCOL_REQUIRED`) e.g. `urisource-http` or `urisource-rtsp` - element-(`ELEMENT_REQUIRED`), e.g. `element-videoconvert`