hi guy:
I am porting a project from linux to windows and i chose cygwin . The project receive video and audio by gstreamer. But it only play audio but the video is fail. GStreamer had tell me WARNING message:
GStreamer-WARNING **: Failed to load plugin '/usr/local/lib/gstreamer-0.10/libgstcoreelements.dll': No such file or directory
The libgstcoreelements.dll be existed in /usr/local/lib/gstreamer-0.10/
I guess the WARNING is key point but I don't know how to fix it. thank your help. MY SYSTEM:
cygwin1.7.2 on winxp MY SETUP: gstreamer-0.10.24 gst-plugins-base-0.10.24 gst-plugins-good-0.10.16 gst-plugins-ugly-0.10.12 gst-plugins-bad-0.10.14 MY COMPILE gcc 4.3.4 (not use mingw)
WARNING MESSAGE
GStreamer-WARNING **: Failed to load plugin '/usr/local/lib/gstreamer-0.10/libgstcoreelements.dll': No such file or directory
GStreamer-WARNING **: Failed to load plugin '/usr/local/lib/gstreamer-0.10/libgstcoreelements.dll': No such file or directory
Gtk-WARNING **: Could not find signal handler 'on_rec1_activate' Gtk-WARNING **: Could not find signal handler 'on_conn1_activate' Gtk-WARNING **: Could not find signal handler 'on_window_destroy'
Gtk-WARNING **: Could not find signal handler 'on_btn_debug_clicked' Gtk-WARNING **: Could not find signal handler 'on_btn_config_clicked'
Gtk-WARNING **: Could not find signal handler 'on_btn_quad_clicked' Gtk-WARNING **: Could not find signal handler 'on_btn_ch4_clicked' Gtk-WARNING **: Could not find signal handler 'on_btn_ch3_clicked'
Gtk-WARNING **: Could not find signal handler 'on_btn_ch2_clicked' Gtk-WARNING **: Could not find signal handler 'on_btn_ch1_clicked' Gtk-WARNING **: Could not find signal handler 'on_da0_button_press_event'
Gtk-WARNING **: Could not find signal handler 'on_da0_event' Gtk-WARNING **: Could not find signal handler 'on_da3_button_press_event'
Gtk-WARNING **: Could not find signal handler 'on_da2_button_press_event' Gtk-WARNING **: Could not find signal handler 'on_da1_button_press_event' GStreamer-CRITICAL **: gst_bin_add: assertion `GST_IS_ELEMENT (element)' failed
GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (dest)' failed GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (src)' failed
GStreamer-CRITICAL **: gst_bin_add: assertion `GST_IS_ELEMENT (element)' failed GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (dest)' failed
GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (src)' failed GStreamer-CRITICAL **: gst_bin_add: assertion `GST_IS_ELEMENT (element)' failed
GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (dest)' failed GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (src)' failed
GStreamer-CRITICAL **: gst_bin_add: assertion `GST_IS_ELEMENT (element)' failed GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (dest)' failed
GStreamer-CRITICAL **: gst_element_link_pads_filtered: assertion `GST_IS_ELEMENT (src)' failed ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
hi guy: ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
If you get "Gtk-WARNING **: Could not find signal handler..." and your handlers
are inside *.cpp file, add to their declaration: extern "C" .............. . Otherwise exported names are "decorated", it's C++'s default. ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |