compiling gstreamer for android failed

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

compiling gstreamer for android failed

Peter Xu
I am trying to port gstreamer with the help of the following wiki:
http://gstreamer.freedesktop.org/wiki/GstreamerAndroid_InstallInstructions

however, I failed with this step (the very last ones, just before the final 'make'):
$ make gstreamer-aggregate-configure

and the failed output is:
......
checking if compiler supports gcc-style inline assembly... yes
checking for rint... yes
checking for sinh... yes
checking for cosh... yes
checking for asinh... yes
checking for fpclass... no
checking for isinf... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... no
checking for working mmap... no
checking for struct ip_mreqn... yes
checking for GLIB... yes
checking for GST... yes
configure: using GStreamer tools in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer/tools
configure: using GStreamer plug-ins in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer
checking for GST_BASE... yes
checking for GST_GDP... yes
checking for GST_CONTROLLER... yes
checking for GST_CHECK... no
configure: No package 'gstreamer-check-0.10' found
configure: no gstreamer-check-0.10 >= 0.10.33 (GStreamer Check unittest Library) found
checking for GST_PLUGINS_BASE... no
configure: Requested 'gstreamer-plugins-base-0.10 >= 0.10.33' but version of GStreamer Base Plugins Libraries, Uninstalled is 0.10.32.2
configure: error: no gstreamer-plugins-base-0.10 >= 0.10.33 (GStreamer Base Plugins) found
  configure failed
make: *** [gst-plugins-good-configure-real] 错误 1

I think I have carefully followed the wiki's instruction. Can anyone helps?

Peter

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: compiling gstreamer for android failed

Kapil Agrawal
The local manifest file downloads gst-plugins-base from
git://git.collabora.co.uk/git/user/reynaldo/android
and gst-plugins-good from
git://anongit.freedesktop.org/gstreamer/

So there is a version mismatch, ie gst-good is expecting latest gst-base and in reynaldo repo its older.
I suggest you change the manifest to download gst-base from
git://anongit.freedesktop.org/gstreamer/

Regards
Kapil


2011/6/13 Xu Peter <[hidden email]>
I am trying to port gstreamer with the help of the following wiki:
http://gstreamer.freedesktop.org/wiki/GstreamerAndroid_InstallInstructions

however, I failed with this step (the very last ones, just before the final 'make'):
$ make gstreamer-aggregate-configure

and the failed output is:
......
checking if compiler supports gcc-style inline assembly... yes
checking for rint... yes
checking for sinh... yes
checking for cosh... yes
checking for asinh... yes
checking for fpclass... no
checking for isinf... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... no
checking for working mmap... no
checking for struct ip_mreqn... yes
checking for GLIB... yes
checking for GST... yes
configure: using GStreamer tools in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer/tools
configure: using GStreamer plug-ins in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer
checking for GST_BASE... yes
checking for GST_GDP... yes
checking for GST_CONTROLLER... yes
checking for GST_CHECK... no
configure: No package 'gstreamer-check-0.10' found
configure: no gstreamer-check-0.10 >= 0.10.33 (GStreamer Check unittest Library) found
checking for GST_PLUGINS_BASE... no
configure: Requested 'gstreamer-plugins-base-0.10 >= 0.10.33' but version of GStreamer Base Plugins Libraries, Uninstalled is 0.10.32.2
configure: error: no gstreamer-plugins-base-0.10 >= 0.10.33 (GStreamer Base Plugins) found
  configure failed
make: *** [gst-plugins-good-configure-real] 错误 1

I think I have carefully followed the wiki's instruction. Can anyone helps?

Peter

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel




--
www.mediamagictechnologies.com (Gstreamer, ffmpeg, Red5, Streaming)
twitter handle: @gst_kaps
http://www.linkedin.com/in/kapilagrawal

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: compiling gstreamer for android failed

Peter Xu
2011/6/14 Kapil Agrawal <[hidden email]>
The local manifest file downloads gst-plugins-base from
git://git.collabora.co.uk/git/user/reynaldo/android
and gst-plugins-good from
git://anongit.freedesktop.org/gstreamer/

So there is a version mismatch, ie gst-good is expecting latest gst-base and in reynaldo repo its older.
I suggest you change the manifest to download gst-base from
git://anongit.freedesktop.org/gstreamer/

Regards
Kapil

Hi, Kapil, 

Thanks for your reply. 

I think that is the problem I met. Actually, I found gst-editing-services has the same problem. Just now, I have modified the configure.ac both in gst-plugins-good and gst-editing-services:

xzpeter@xzpeter-EHA4:~/intel/android/external/gstreamer_aggregate/gst-plugins-good$ git diff
diff --git a/configure.ac b/configure.ac
index e717120..86dac2c 100644
@@ -54,8 +54,9 @@ AC_LIBTOOL_WIN32_DLL
 AM_PROG_LIBTOOL
 
 dnl *** required versions of GStreamer stuff ***
-GST_REQ=0.10.33
-GSTPB_REQ=0.10.33
+dnl modifiled by xzpeter, old version requirements are 0.10.33
+GST_REQ=0.10.32
+GSTPB_REQ=0.10.32
 
 dnl *** autotools stuff ****


xzpeter@xzpeter-EHA4:~/intel/android/external/gstreamer_aggregate/gst-editing-services$ git diff
diff --git a/configure.ac b/configure.ac
index 4a415e4..de5f9cb 100644
@@ -50,8 +50,9 @@ AC_LIBTOOL_WIN32_DLL
 AM_PROG_LIBTOOL
 
 dnl *** required versions of GStreamer stuff ***
-GST_REQ=0.10.34
-GSTPB_REQ=0.10.34
+dnl changed by xzpeter, old ver is 0.10.34
+GST_REQ=0.10.32
+GSTPB_REQ=0.10.32
 
 dnl *** autotools stuff ****

And this worked. 

Peter
 


2011/6/13 Xu Peter <[hidden email]>
I am trying to port gstreamer with the help of the following wiki:
http://gstreamer.freedesktop.org/wiki/GstreamerAndroid_InstallInstructions

however, I failed with this step (the very last ones, just before the final 'make'):
$ make gstreamer-aggregate-configure

and the failed output is:
......
checking if compiler supports gcc-style inline assembly... yes
checking for rint... yes
checking for sinh... yes
checking for cosh... yes
checking for asinh... yes
checking for fpclass... no
checking for isinf... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... no
checking for working mmap... no
checking for struct ip_mreqn... yes
checking for GLIB... yes
checking for GST... yes
configure: using GStreamer tools in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer/tools
configure: using GStreamer plug-ins in /home/xzpeter/intel/android/external/gstreamer_aggregate/gstreamer
checking for GST_BASE... yes
checking for GST_GDP... yes
checking for GST_CONTROLLER... yes
checking for GST_CHECK... no
configure: No package 'gstreamer-check-0.10' found
configure: no gstreamer-check-0.10 >= 0.10.33 (GStreamer Check unittest Library) found
checking for GST_PLUGINS_BASE... no
configure: Requested 'gstreamer-plugins-base-0.10 >= 0.10.33' but version of GStreamer Base Plugins Libraries, Uninstalled is 0.10.32.2
configure: error: no gstreamer-plugins-base-0.10 >= 0.10.33 (GStreamer Base Plugins) found
  configure failed
make: *** [gst-plugins-good-configure-real] 错误 1

I think I have carefully followed the wiki's instruction. Can anyone helps?

Peter

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel




--
www.mediamagictechnologies.com (Gstreamer, ffmpeg, Red5, Streaming)
twitter handle: @gst_kaps
http://www.linkedin.com/in/kapilagrawal

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel



_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel