8

私は Gstreamer を初めて使用します。Gstreamer のチュートリアル 1 をコンパイルすると問題が発生します。Visual C++ Express 2010 で Windows 7 64 ビット、および Gstreamer SDK 2012.11 32 ビット (ここからダウンロード) を使用しています。コードは次のとおりです。

#include "stdafx.h"
#include <gst/gst.h>

int main(int argc, char *argv[]) {
  GstElement *pipeline;
  GstBus *bus;
  GstMessage *msg;

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

  /* Build the pipeline */
  pipeline = gst_parse_launch ("playbin2 uri=file://E:/test_1.MOV", NULL);

  /* Start playing */
  gst_element_set_state (pipeline, GST_STATE_PLAYING);

  /* Wait until error or EOS */
  bus = gst_element_get_bus (pipeline);
  msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS);

  /* Free resources */
  if (msg != NULL)
    gst_message_unref (msg);
  gst_object_unref (bus);
  gst_element_set_state (pipeline, GST_STATE_NULL);
  gst_object_unref (pipeline);
  return 0;
}

最初のエラー:

error C2664: 'gst_bus_timed_pop_filtered' : cannot convert parameter 3 from 'int' to 'GstMessageType'

そのため、コードから GST_MESSAGE_ERROR を削除しました。したがって、行は次のようになります。

msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_EOS);

Ubuntuでも同じ問題がありました。しかしその後、Ubuntu でビデオを再生できました。

2番目のエラー: しかし、Windowsではコンパイルは良好ですが、実行しようとするとエラーが発生します:

GStreamer-CRITICAL **: gst_element_set_state: assertion 'GST_IS_ELEMENT <element>' failed
GStreamer-CRITICAL **: gst_element_get_bus: assertion 'GST_IS_ELEMENT <element>' failed
GStreamer-CRITICAL **: gst_bus_timed_pop_filtered: assertion 'GST_IS_BUS <bus>' failed
GStreamer-CRITICAL **: gst_object_unref: assertion 'object=!NULL' failed
GStreamer-CRITICAL **: gst_element_set_state: assertion 'GST_IS_ELEMENT <element>' failed
GStreamer-CRITICAL **: gst_object_unref: assertion 'object=!NULL' failed

Windowsではなくubuntuで機能する理由がよくわかりません。そして、私は本当にこの問題を解決する方法を知りません。私を手伝ってくれますか ?

よろしく、

4

4 に答える 4

20

l最初のエラー

おそらく、コードは C++ としてコンパイルされているため、enum キャストがもう少し厳密です。置き換えてみてください: GST_MESSAGE_ERROR | GST_MESSAGE_EOS(GstMessageType)(GST_MESSAGE_ERROR | GST_MESSAGE_EOS)

2 番目のエラー

次の行である可能性が高いです。

pipeline = gst_parse_launch ("playbin2 uri=file://E:/test_1.MOV", NULL);

NULL を返し、残りのエラーはこの結果です。なぜNULLを返すことができるのですか? 多くの理由があります。「playbin2」でプラグインをインストールしていない可能性がありますか?これを試して:

  • 構造体へのポインターをGError2 番目のパラメーターとして渡しますgst_parse_launch(messageヒントを提供できるフィールドがあります)。
  • --gst-debug-level=4プログラムを実行するときに、コマンドライン パラメータとして 1 つまたはそれ以上を渡します。コンソール出力に多くの情報が表示されます。失敗の理由はそこのどこかにあります。
于 2013-02-18T01:43:42.833 に答える
0

C++ でコンパイルしている場合のエラー 1 については、次 gst_bus_timed_pop_filtered(bus, GST_CLOCK_TIME_NONE, static_cast<GstMessageType>(GST_MESSAGE_ERROR | GST_MESSAGE_EOS)); の代わりに: を 使用します。gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS);

于 2021-10-16T16:07:06.040 に答える