gstreamer代码无法链接所有GST ELEMENTS

时间:2015-11-11 15:27:11

标签: c++ qt gstreamer

Ubuntu 14.04 Gstreamer 0.10 Code Sdk:Qt。

我对Gstreamer很新。当我在终端上使用gst-launch工具时,我可以成功地将相机连接到我的工作站捕获和流视频。

为了继续,我在Qt中编写了c代码。它正确编译,当我运行它时,它打开新的Xterm窗口并抛出错误“--std=c++11我做错了还是我需要做其他事情来查看流媒体

以下是我的代码(它深受其他人的代码启发)

.Pro文件

Elements could  not be linked"

的main.cpp

QT       += core

QT       -= gui
QT       += core gui
QT       += network
QT           +=core

QMAKE_CXXFLAGS+= -std=c++11
QMAKE_LFLAGS +=  -std=c++11

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets



TARGET = justtest

PKGCONFIG +=glib-2.0
PKGCONFIG += gstreamer-0.10
CONFIG += link_pkgconfig
CONFIG   += console
CONFIG   -= app_bundle


TEMPLATE = app
INCLUDEPATH += pkg-config --cflags glib-2.0
INCLUDEPATH += /usr/include/glib-2.0/glib/
INCLUDEPATH +=/usr/include/libxml2/
INCLUDEPATH += /usr/include/gstreamer-0.10/
SOURCES += main.cpp

OUTPUT:ON NEW X TERM窗口

#include <gst/gst.h>
#include <glib.h>


static gboolean bus_call (GstBus *bus, GstMessage *msg, gpointer data)
{
  GMainLoop *loop = (GMainLoop *) data;

  switch (GST_MESSAGE_TYPE (msg)) {

    case GST_MESSAGE_EOS:
      g_print ("End of stream\n");
      g_main_loop_quit (loop);
      break;

    case GST_MESSAGE_ERROR: {
      gchar  *debug;
      GError *error;

      gst_message_parse_error (msg, &error, &debug);
      g_free (debug);

      g_printerr ("Error: %s\n", error->message);
      g_error_free (error);

      g_main_loop_quit (loop);
      break;
    }
    default:
      break;
  }

  return TRUE;
}

int main(int argc, char *argv[])
{
  //QApplication app(argc, argv);
  GstElement *pipeline, *source, *sink, *convert, *videoenc;
  GstBus *bus;
  GstMessage *msg;
  GstStateChangeReturn ret;

  GMainLoop *loop;
  // Initialize GStreamer /
  gst_init (&argc, &argv);

  loop = g_main_loop_new( NULL, FALSE );
  // Create the elements
  source = gst_element_factory_make ("v4l2src", "source");
  sink = gst_element_factory_make ("autovideosink", "sink");
  convert =gst_element_factory_make("ffmpegcolorspace","convert");
  videoenc = gst_element_factory_make ("ffdec_mpeg4", "videoenc");
  // Create the empty pipeline
  pipeline = gst_pipeline_new ("test-pipeline");

  if (!pipeline || !source || !sink || !convert)
    {
      g_printerr ("Not all elements could be created.\n");
      return -1;
    }

  //set der source
      g_object_set (G_OBJECT ( source ), "device", "/dev/video0", NULL);

      // we add a message handler
        bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
        gst_bus_add_watch (bus, bus_call, loop);
        gst_object_unref (bus);


  //Build the pipeline
  gst_bin_add_many (GST_BIN (pipeline), source,  convert,videoenc, sink, NULL);
  if (gst_element_link (convert, sink) != TRUE)
    {
      g_printerr ("Elements could not be linked confert sink.\n");
      gst_object_unref (pipeline);
      return -1;
    }


 // if (gst_element_link (source, convert) != TRUE) {
        //  g_printerr ("Elements could not be linked source -convert.\n");
        //  gst_object_unref (pipeline);
         // return -1;
     // }

  if( gst_element_link_many ( source, convert, videoenc, sink,
                             NULL) != TRUE )
    {
       g_printerr ("Elements could not be linked source -convert.\n");
    }

    g_print("Linked all the Elements together\n");
    // Iterate
      g_print ("Running...\n");
      g_main_loop_run (loop);

      // Out of the main loop, clean up nicely
      g_print ("Returned, stopping playback\n");
      gst_element_set_state (pipeline, GST_STATE_NULL);

      g_print ("Deleting pipeline\n");
      gst_object_unref (GST_OBJECT (pipeline));
      return 0;
}

1 个答案:

答案 0 :(得分:1)

您似乎试图将相同的元素链接两次,这是不可能的。

你链接转换为接收器,然后下面几行你尝试链接转换! videoenc!下沉。

使用解码器(您将其命名为videoenc)仅在您知道相机提供mpeg4视频时才有效,否则将无法协商。如果您的相机支持原始格式,只需从管道中删除解码器。

同样,0.10未经过多年的保留和过时,请考虑转移到1.x。