mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-23 06:59:58 -05:00
Cleanups
Remove old code Only depend on GStreamer for the plugins Rename STOP to PAUSE because that's what it really does Start working on format_fixate. Remove default property value from props Fix framerate
This commit is contained in:
parent
da5fb808e7
commit
fbd6304663
43 changed files with 97 additions and 3631 deletions
|
|
@ -32,14 +32,9 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
//#include "gstpinossocketsink.h"
|
||||
#include "gstpinosportsink.h"
|
||||
#include "gstpinosportsrc.h"
|
||||
#include "gstpinossrc.h"
|
||||
#include "gstpinossink.h"
|
||||
#include "gstpinosdeviceprovider.h"
|
||||
#include "gstpinospay.h"
|
||||
#include "gstpinosdepay.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (pinos_debug);
|
||||
|
||||
|
|
@ -48,20 +43,10 @@ plugin_init (GstPlugin * plugin)
|
|||
{
|
||||
pinos_init (NULL, NULL);
|
||||
|
||||
// gst_element_register (plugin, "pinospay", GST_RANK_NONE,
|
||||
// GST_TYPE_PINOS_PAY);
|
||||
// gst_element_register (plugin, "pinosdepay", GST_RANK_NONE,
|
||||
// GST_TYPE_PINOS_DEPAY);
|
||||
gst_element_register (plugin, "pinossrc", GST_RANK_PRIMARY + 1,
|
||||
GST_TYPE_PINOS_SRC);
|
||||
gst_element_register (plugin, "pinossink", GST_RANK_NONE,
|
||||
GST_TYPE_PINOS_SINK);
|
||||
// gst_element_register (plugin, "pinossocketsink", GST_RANK_NONE,
|
||||
// GST_TYPE_PINOS_SOCKET_SINK);
|
||||
// gst_element_register (plugin, "pinosportsink", GST_RANK_NONE,
|
||||
// GST_TYPE_PINOS_PORT_SINK);
|
||||
// gst_element_register (plugin, "pinosportsrc", GST_RANK_NONE,
|
||||
// GST_TYPE_PINOS_PORT_SRC);
|
||||
|
||||
if (!gst_device_provider_register (plugin, "pinosdeviceprovider",
|
||||
GST_RANK_PRIMARY + 1, GST_TYPE_PINOS_DEVICE_PROVIDER))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue