开发者

Java and gstreamer-java initialisation error

I am building a small app which will play streaming audio from the internet in java (mainly internet radio stations). I have decided to use the gstreamer-java library for the sound, which uses JNA.

I would like to include a check in the code, to see whether the gstreamer library has been initialised. When I have left the "Gst.init()" code out (to mimic when the library has not been initialised correctly), the application throws out the following messages:

(process:21888): GLib-GObject-CRITICAL **: /build/buildd/glib2.0-2.22.3/gobject/gtype.c:2458: initialization assertion failed, use IA__g_type_init() prior to this function 
(process:21888): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed

The app calls the gstreamer-java library. The error messages appear but the thread continues to run, hogging the CPU.

Is there any way to catch the error or to add a check to prevent it from happening?

An alternative would be to put the "Gst.init()" in the main开发者_Go百科 class, but I am not sure if this would always guarantee the gstreamer library is initialised.


According to javadoc Gst.init() can throw GstException. What about the following expression?:

try {
  Gst.init();
} catch (GstException ex) {
  logger.log(Level.SEVERE, "Ошибка инициализации gstreamer!!!");
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜