MoodbarPipeline: Use bytearray directly

This commit is contained in:
Jonas Kvinge
2025-01-06 21:28:33 +01:00
parent 7527d2ea9a
commit eb83f23125
2 changed files with 10 additions and 10 deletions

View File

@@ -62,18 +62,18 @@ MoodbarPipeline::~MoodbarPipeline() {
}
GstElement *MoodbarPipeline::CreateElement(const QString &factory_name) {
GstElement *MoodbarPipeline::CreateElement(const QByteArray &factory_name) {
GstElement *ret = gst_element_factory_make(factory_name.toLatin1().constData(), nullptr);
GstElement *element = gst_element_factory_make(factory_name.constData(), nullptr);
if (ret) {
gst_bin_add(GST_BIN(pipeline_), ret);
if (element) {
gst_bin_add(GST_BIN(pipeline_), element);
}
else {
qLog(Warning) << "Unable to create gstreamer element" << factory_name;
}
return ret;
return element;
}
@@ -100,10 +100,10 @@ void MoodbarPipeline::Start() {
pipeline_ = gst_pipeline_new("moodbar-pipeline");
GstElement *decodebin = CreateElement(u"uridecodebin"_s);
convert_element_ = CreateElement(u"audioconvert"_s);
GstElement *spectrum = CreateElement(u"strawberry-fastspectrum"_s);
GstElement *fakesink = CreateElement(u"fakesink"_s);
GstElement *decodebin = CreateElement("uridecodebin");
convert_element_ = CreateElement("audioconvert");
GstElement *spectrum = CreateElement("strawberry-fastspectrum");
GstElement *fakesink = CreateElement("fakesink");
if (!decodebin || !convert_element_ || !spectrum || !fakesink) {
gst_object_unref(GST_OBJECT(pipeline_));

View File

@@ -54,7 +54,7 @@ class MoodbarPipeline : public QObject {
void Finished(const bool success);
private:
GstElement *CreateElement(const QString &factory_name);
GstElement *CreateElement(const QByteArray &factory_name);
QByteArray ToGstUrl(const QUrl &url);
void ReportError(GstMessage *msg);