https://bugs.freedesktop.org/show_bug.cgi?id=75683
--- Comment #28 from Julien Nabet <[email protected]> --- Alex: 1) I haven't logged the output so can't make the comparison 2) in your attachment 95336, I noticed this: checking whether to enable the new GStreamer 1.0 avmedia backend... no checking whether to enable the GStreamer avmedia backend... yes checking for GSTREAMER_0_10... yes So it seems gstreamer 1.0 isn't recognized by LO. But since you haven't disabled gstreamer 0.10, it's not the pb. You might confirm this by adding these 2 lines on your autogen.input: --disable-gstreamer-0.10 --enable-gstreamer then just run "./autogen.sh" (without arguments) 3) The control of the presence of gstreamer is in configure.ac: 10190 ENABLE_GSTREAMER="" 10191 10192 if test "$build_gstreamer" = "yes"; then 10193 10194 AC_MSG_CHECKING([whether to enable the new GStreamer 1.0 avmedia backend]) 10195 if test "x$enable_gstreamer" != "xno"; then 10196 ENABLE_GSTREAMER="TRUE" 10197 AC_MSG_RESULT([yes]) 10198 PKG_CHECK_MODULES( GSTREAMER, gstreamer-1.0 gstreamer-plugins-base-1.0 gstreamer-video-1.0 ) 10199 GSTREAMER_CFLAGS=$(printf '%s' "$GSTREAMER_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g") 10200 else 10201 AC_MSG_RESULT([no]) 10202 fi 10203 fi 10204 AC_SUBST(GSTREAMER_CFLAGS) 10205 AC_SUBST(GSTREAMER_LIBS) 10206 AC_SUBST(ENABLE_GSTREAMER) Now to have more traces, included debug ones. I would add these lines in your autogen.input: --enable-werror --enable-debug --enable-dbgutil Again, after having added any lines in your autogen.input, just run "./autogen.sh" (without arguments) Then "make" again to build with traces. For information, here are the version of gstreamer I got: root@julienPC:/home/julien/compile-libreoffice/libo# apt-cache show gstreamer0.10-plugins-base Package: gstreamer0.10-plugins-base Source: gst-plugins-base0.10 Version: 0.10.36-1.1 root@julienPC:/home/julien/compile-libreoffice/libo# apt-cache show gstreamer1.0-plugins-base Package: gstreamer1.0-plugins-base Source: gst-plugins-base1.0 Version: 1.2.3-1 -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
