1

私は gstreamer の初心者で、キャプション デコード用のサンプル プラグインを開発しようとしています。

この情報に基づいて、gStreamer プラグイン テンプレートをダウンロードしました。

コマンドラインからプラグインを起動したところ、問題なく動作しています。

プラグインを検証するサンプル アプリケーションを作成しました。しかし今、パイプラインの状態を PLAYING に設定する際に問題に直面しています。以下はコードスニペットです

任意の入力は非常に役立ちます。

前もって感謝します、クランティ


gst_init(NULL, NULL);

loop = g_main_loop_new (NULL, TRUE);

g_print("\n Gstreamer is Initialized and Created the loop ");

pipeline = gst_pipeline_new ("pipeline");

source = gst_element_factory_make ("filesrc", "source");

filter = gst_element_factory_make ("myfilter", "testfilter");

sink = gst_element_factory_make ("fakesink", "sink");

if((NULL != pipeline) && (NULL != source) && (NULL != filter) && (NULL != sink))
{
    g_print("\n Successfully created the factory elements ");

    g_object_set(G_OBJECT (source), "location", fileName, NULL);
    g_print("\n Set the file name \n");

    g_object_set(G_OBJECT (filter), "silent", 1, NULL);
    g_print("\n Set the silent type \n");

    /* we add a message handler */
    bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
    bus_watch_id = gst_bus_add_watch (bus, bus_call, loop);
    gst_object_unref (bus);
    g_print("\n Created bus and a monitor to watch it");

    gst_bin_add_many(GST_BIN(pipeline), source, filter, sink, NULL);
    gst_element_link_many(source, filter, sink);
    g_print("\n Added and Linked the factory elements");

    g_signal_connect (filter, "pad-added", G_CALLBACK (on_pad_added), filter);

    g_print ("Now reading: %s\n", "test.txt");
    g_print ("Setting the pipeline state to PLAYING ");
    ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
    if(ret == GST_STATE_CHANGE_FAILURE)
    {
        g_print("\n Failure in setting pipeline state to PLAYING \n");
    }

    else
    {
        g_print("\n Successfully set the pipeline state to playing \n");
    }
}

else
{
    g_print("\n Failure in creating factory elements");
}

4

1 に答える 1

1

gstreamer 要素のいくつかの例を試した後、問題が見つかりました。

filesrc、filter、fakesink とは別に::「decoder」要素もパイプラインに追加すると、状態を PLAYING に変更できます

しかし、なぜそれが必要なのですか - 私はまだそれを理解しようとしています

また、パイプラインの作成に使用された名前が問題を引き起こしている場合もあります

于 2013-03-27T07:19:07.140 に答える