mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
docs: add openaptx plugin
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8295>
This commit is contained in:
parent
3de86b2b97
commit
dba15a43c7
2 changed files with 90 additions and 0 deletions
|
@ -235109,6 +235109,87 @@
|
||||||
"tracers": {},
|
"tracers": {},
|
||||||
"url": "Unknown package origin"
|
"url": "Unknown package origin"
|
||||||
},
|
},
|
||||||
|
"openaptx": {
|
||||||
|
"description": "Open Source implementation of Audio Processing Technology codec (aptX)",
|
||||||
|
"elements": {
|
||||||
|
"openaptxdec": {
|
||||||
|
"author": "Igor V. Kovalenko <igor.v.kovalenko@gmail.com>, Thomas Weißschuh <thomas@t-8ch.de>",
|
||||||
|
"description": "Decode an aptX or aptX-HD audio stream using libopenaptx",
|
||||||
|
"hierarchy": [
|
||||||
|
"GstOpenaptxDec",
|
||||||
|
"GstAudioDecoder",
|
||||||
|
"GstElement",
|
||||||
|
"GstObject",
|
||||||
|
"GInitiallyUnowned",
|
||||||
|
"GObject"
|
||||||
|
],
|
||||||
|
"klass": "Codec/Decoder/Audio",
|
||||||
|
"pad-templates": {
|
||||||
|
"sink": {
|
||||||
|
"caps": "audio/aptx-hd:\n channels: 2\n rate: [ 1, 2147483647 ]\naudio/aptx:\n channels: 2\n rate: [ 1, 2147483647 ]\n",
|
||||||
|
"direction": "sink",
|
||||||
|
"presence": "always"
|
||||||
|
},
|
||||||
|
"src": {
|
||||||
|
"caps": "audio/x-raw:\n format: S24LE\n rate: [ 1, 2147483647 ]\n channels: 2\n layout: interleaved\n",
|
||||||
|
"direction": "src",
|
||||||
|
"presence": "always"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"autosync": {
|
||||||
|
"blurb": "Gracefully handle partially corrupted stream in which some bytes are missing",
|
||||||
|
"conditionally-available": false,
|
||||||
|
"construct": false,
|
||||||
|
"construct-only": false,
|
||||||
|
"controllable": false,
|
||||||
|
"default": "true",
|
||||||
|
"mutable": "null",
|
||||||
|
"readable": true,
|
||||||
|
"type": "gboolean",
|
||||||
|
"writable": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rank": "none"
|
||||||
|
},
|
||||||
|
"openaptxenc": {
|
||||||
|
"author": "Igor V. Kovalenko <igor.v.kovalenko@gmail.com>, Thomas Weißschuh <thomas@t-8ch.de>",
|
||||||
|
"description": "Encode an aptX or aptX-HD audio stream using libopenaptx",
|
||||||
|
"hierarchy": [
|
||||||
|
"GstOpenaptxEnc",
|
||||||
|
"GstAudioEncoder",
|
||||||
|
"GstElement",
|
||||||
|
"GstObject",
|
||||||
|
"GInitiallyUnowned",
|
||||||
|
"GObject"
|
||||||
|
],
|
||||||
|
"interfaces": [
|
||||||
|
"GstPreset"
|
||||||
|
],
|
||||||
|
"klass": "Codec/Encoder/Audio",
|
||||||
|
"pad-templates": {
|
||||||
|
"sink": {
|
||||||
|
"caps": "audio/x-raw:\n format: S24LE\n rate: [ 1, 2147483647 ]\n channels: 2\n layout: interleaved\n",
|
||||||
|
"direction": "sink",
|
||||||
|
"presence": "always"
|
||||||
|
},
|
||||||
|
"src": {
|
||||||
|
"caps": "audio/aptx-hd:\n channels: 2\n rate: [ 1, 2147483647 ]\naudio/aptx:\n channels: 2\n rate: [ 1, 2147483647 ]\n",
|
||||||
|
"direction": "src",
|
||||||
|
"presence": "always"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rank": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"filename": "gstopenaptx",
|
||||||
|
"license": "LGPL",
|
||||||
|
"other-types": {},
|
||||||
|
"package": "GStreamer Bad Plug-ins",
|
||||||
|
"source": "gst-plugins-bad",
|
||||||
|
"tracers": {},
|
||||||
|
"url": "Unknown package origin"
|
||||||
|
},
|
||||||
"opencv": {
|
"opencv": {
|
||||||
"description": "GStreamer OpenCV Plugins",
|
"description": "GStreamer OpenCV Plugins",
|
||||||
"elements": {
|
"elements": {
|
||||||
|
|
|
@ -27,6 +27,15 @@
|
||||||
#include "gstopenaptxdec.h"
|
#include "gstopenaptxdec.h"
|
||||||
#include "gstopenaptxenc.h"
|
#include "gstopenaptxenc.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECTION:plugin-openaptx
|
||||||
|
*
|
||||||
|
* aptX audio encoding and decoding
|
||||||
|
*
|
||||||
|
* See also: @openaptxenc, @openaptxenc
|
||||||
|
* Since: 1.20
|
||||||
|
*/
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue