[PATCH 0/4] Build fixes for gst-plugins-bad.

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

[PATCH 0/4] Build fixes for gst-plugins-bad.

Simon Holm Thøgersen
I've found that these four patches are required to compile gst-plugins-bad.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

[PATCH 1/4] Fix configure.ac macro to allow enabling opengl in build.

Simon Holm Thøgersen
---
 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 976cb28..ad1bf29 100644
--- a/configure.ac
+++ b/configure.ac
@@ -288,11 +288,11 @@ dnl OpenGL
 translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
 AG_GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
   PKG_CHECK_MODULES(GL, gl >= 7.1.0, [
-    HAVE_GL="yes"
+    HAVE_OPENGL="yes"
     AC_SUBST(GL_CFLAGS)
     AC_SUBST(GL_LIBS)
   ],[
-    HAVE_GL=no
+    HAVE_OPENGL="no"
     AC_MSG_RESULT(no)
   ])
 ])
--
1.5.3.5.576.gfe6193


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

[PATCH 4/4] Remove size support for GMemoryInputStreams.

Simon Holm Thøgersen
In reply to this post by Simon Holm Thøgersen
The API of GLib has changed in CVS and no longer provides a function to
get the size of a GMemoryInputStream, see bug #506374. The functionality
might still be possible to provide, see bug #507584 that has been filed
to track the issue.
---
 ext/gio/gstgiobasesrc.c |   11 -----------
 1 files changed, 0 insertions(+), 11 deletions(-)

diff --git a/ext/gio/gstgiobasesrc.c b/ext/gio/gstgiobasesrc.c
index eaf6b95..03237c9 100644
--- a/ext/gio/gstgiobasesrc.c
+++ b/ext/gio/gstgiobasesrc.c
@@ -185,17 +185,6 @@ gst_gio_base_src_get_size (GstBaseSrc * base_src, guint64 * size)
 
       g_clear_error (&err);
     }
-  } else if (G_IS_MEMORY_INPUT_STREAM (src->stream)) {
-    gsize data_size;
-
-    data_size =
-        g_memory_input_stream_get_data_size (G_MEMORY_INPUT_STREAM (src->
-            stream));
-
-    if (data_size != -1) {
-      *size = data_size;
-      return TRUE;
-    }
   }
 
   return FALSE;
--
1.5.3.5.576.gfe6193


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

[PATCH 2/4] Include <stdlib.h> for memset and free.

Simon Holm Thøgersen
In reply to this post by Simon Holm Thøgersen
---
 sys/glsink/gstgldisplay.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sys/glsink/gstgldisplay.c b/sys/glsink/gstgldisplay.c
index f0995c1..db2ad49 100644
--- a/sys/glsink/gstgldisplay.c
+++ b/sys/glsink/gstgldisplay.c
@@ -25,6 +25,7 @@
 #include "glextensions.h"
 #include <gst/gst.h>
 
+#include <stdlib.h>
 #include <string.h>
 
 static void gst_gl_display_finalize (GObject * object);
--
1.5.3.5.576.gfe6193


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

[PATCH 3/4] Include <stdlib.h> for free.

Simon Holm Thøgersen
In reply to this post by Simon Holm Thøgersen
---
 sys/glsink/gstglfilterexample.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sys/glsink/gstglfilterexample.c b/sys/glsink/gstglfilterexample.c
index 8f7de08..f009e74 100644
--- a/sys/glsink/gstglfilterexample.c
+++ b/sys/glsink/gstglfilterexample.c
@@ -27,6 +27,7 @@
 #include <gstglbuffer.h>
 #include <gstglfilter.h>
 #include "glextensions.h"
+#include <stdlib.h>
 #include <string.h>
 
 #define GST_CAT_DEFAULT gst_gl_filter_example_debug
--
1.5.3.5.576.gfe6193


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [PATCH 0/4] Build fixes for gst-plugins-bad.

Edward Hervey
Administrator
In reply to this post by Simon Holm Thøgersen
Hi,

  Thanks for those patches which will be reviewed soon. Just a few quick
comments though.

  * We use gnome.bugzilla.org for patches (allows proper reviewing) with
one bug per issue (one for missing stdlib.h for ex, another for API
change, ...)
  * If APIs of dependencies change, we don't replace/remove code, but
instead check in configure.ac for what version we have, and
conditionnaly compile code (#ifdef...#else..#endif) based on that
information.
  * Some of those seem to have been fixed in cvs, what version are those
patches against ?

   Edward

On Sun, 2008-01-06 at 04:24 +0100, Simon Holm Thøgersen wrote:

> I've found that these four patches are required to compile gst-plugins-bad.
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2005.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [PATCH 4/4] Remove size support for GMemoryInputStreams.

Sebastian Dröge
In reply to this post by Simon Holm Thøgersen

Am Sonntag, den 06.01.2008, 04:24 +0100 schrieb Simon Holm Thøgersen:
> The API of GLib has changed in CVS and no longer provides a function to
> get the size of a GMemoryInputStream, see bug #506374. The functionality
> might still be possible to provide, see bug #507584 that has been filed
> to track the issue.

Thanks, a probably better fix is now in CVS though, giving us the
duration for every GSeekable:

http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ext/gio/gstgiobasesrc.c.diff?r1=1.2&r2=1.3

Bye

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel

signature.asc (196 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [PATCH 0/4] Build fixes for gst-plugins-bad.

Simon Holm Thøgersen
In reply to this post by Edward Hervey

søn, 06 01 2008 kl. 13:35 +0100, skrev Edward Hervey:
> Hi,
>
>   Thanks for those patches which will be reviewed soon. Just a few quick
> comments though.
>
>   * We use gnome.bugzilla.org for patches (allows proper reviewing) with
> one bug per issue (one for missing stdlib.h for ex, another for API
> change, ...)

I'll happily do what the developers suggest, but the build issues just
seemed like overkill to open bugzilla entries for, which would also have
hidden useful information from others that want to work with CVS code of
GStreamer. (That is, I consider others more likely to subscribe to
gstreamer-devel than follow all bugzilla activity or searching bugzilla
for every issue they encounter. Granted, the include issues are
something everybody working with CVS-versions will just fix themselves,
but I wasted quite a bit of time on the configure.ac one).

>   * If APIs of dependencies change, we don't replace/remove code, but
> instead check in configure.ac for what version we have, and
> conditionnaly compile code (#ifdef...#else..#endif) based on that
> information.
>   * Some of those seem to have been fixed in cvs, what version are those
> patches against ?

They are against the CVS-tree @ about a couple of hours before sending
the patches. Patch 2 is not required after David Scleef's commits that
were made about that time, and Sebastian Dröge has also addressed the
issue for Patch 4 now. Patch 1 and 3 still stands as valid far as I can
tell.

> On Sun, 2008-01-06 at 04:24 +0100, Simon Holm Thøgersen wrote:
> > I've found that these four patches are required to compile gst-plugins-bad.


Simon Holm Thøgersen


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [PATCH 4/4] Remove size support for GMemoryInputStreams.

Simon Holm Thøgersen
In reply to this post by Sebastian Dröge

søn, 06 01 2008 kl. 17:40 +0100, skrev Sebastian Dröge:

> Am Sonntag, den 06.01.2008, 04:24 +0100 schrieb Simon Holm Thøgersen:
> > The API of GLib has changed in CVS and no longer provides a function to
> > get the size of a GMemoryInputStream, see bug #506374. The functionality
> > might still be possible to provide, see bug #507584 that has been filed
> > to track the issue.
>
> Thanks, a probably better fix is now in CVS though, giving us the
> duration for every GSeekable:
>
> http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-bad/ext/gio/gstgiobasesrc.c.diff?r1=1.2&r2=1.3
>
Yes, this is definitely a better solution. I still wonder if GLib
shouldn't just provide that convenience function for GSeekable. Oh
well...


Simon Holm Thøgersen


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Playing video files on Windows

Marko Mikkonen
In reply to this post by Simon Holm Thøgersen

Hello,

What kind of command do you use to play any video file on Windows with
gst-launch (video _and_ sound)?

So far I've tried playbin, but it doesn't work (there is no FILE protocol
handler on Windows, apparently), so I suspect you should use decodebin?
I've been trying a million different combinations, but I just can't find
the right one.

-Marko

P.S. I guess this is not really a developer question but instead a user
question, so perhaps this is not the right forum. But I couldn't find a
better place to ask. Is there a better place?

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Playing video files on Windows

KwangYul Seo-2
Hello,

Try the following command,

gst-launch-0.10.exe playbin uri="file:///d:/path/a.avi"

If it does not work on your computer, there might be a problem in your GStreamer installation.

Regards,
Kwang Yul Seo


2008/1/8, Marko Mikkonen <[hidden email]>:

Hello,

What kind of command do you use to play any video file on Windows with
gst-launch (video _and_ sound)?

So far I've tried playbin, but it doesn't work (there is no FILE protocol
handler on Windows, apparently), so I suspect you should use decodebin?
I've been trying a million different combinations, but I just can't find
the right one.

-Marko

P.S. I guess this is not really a developer question but instead a user
question, so perhaps this is not the right forum. But I couldn't find a
better place to ask. Is there a better place?

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Playing video files on Windows

Marko Mikkonen

Hello,

Oh my gawd! I must have had something wrong in the path the previous time
I tried that command, because now it worked!

But there's still one problem. The video file I try to play, plays for a
few seconds and then an exception occurs in the program and it hangs. The
video in the file is XviD coded (GSpot gives a version XviD 1.1.0 Final)
and sound is MPEG-1 Layer 3. Container format is avi.

There's an error message (I don't know what it means) in the command
prompt window: OIL: ERROR liboilcpu.c 282:
oil_cpu_i386_kernel_restrict_flags():  Operating system is not known to
support SSE.  Assuming it does, which might cause problems

Call stack is as follows:

> avcodec-51.dll!02a65ba3()
  [Frames below may be incorrect and/or missing, no symbols loaded for
avcodec-51.dll]
  avcodec-51.dll!02a6ab61()
  libgstreamer-0.10.dll!0062824c()
  libgstreamer-0.10.dll!0062b7f0()
  libgstreamer-0.10.dll!0062824c()
  avcodec-51.dll!02972f17()
  avcodec-51.dll!02a7c1ae()
  avcodec-51.dll!029683d1()
  avcodec-51.dll!02a4f421()
  avcodec-51.dll!02a7d567()
  libgstreamer-0.10.dll!00628177()
  libgstffmpeg.dll!024f5824()
  libgstffmpeg.dll!024f68fa()
  avcodec-51.dll!02962abe()
  libgstffmpeg.dll!024f649a()
  libgstffmpeg.dll!024f6205()
  libgstffmpeg.dll!024f8485()
  libgstreamer-0.10.dll!00628163()
  libgstreamer-0.10.dll!00631886()
  libgstcoreelements.dll!022db234()
  libgstcoreelements.dll!022daf41()
  libgstreamer-0.10.dll!0063fc99()
  libglib-2.0-0.dll!672ff27a()
  libglib-2.0-0.dll!672fd7d5()
  libgthread-2.0-0.dll!649420da()
  msvcrt.dll!77bcb530()
  kernel32.dll!7d4dfe21()

Output window of Visual Studio says:

'gst-launch-0.10.exe': Loaded 'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\gst-launch-0.10.exe', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\ntdll.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libglib-2.0-0.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\iconv.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\msvcrt.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\intl.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\advapi32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\rpcrt4.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\secur32.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\ole32.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\SysWOW64\gdi32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\user32.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\shell32.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\shlwapi.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libgobject-2.0-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libgthread-2.0-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\bin\libgstreamer-0.10.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\GTK2-Runtime\lib\libgmodule-2.0-0.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\libxml2.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\wsock32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\zlib1.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\imm32.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded
'C:\WINDOWS\WinSxS\wow64_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_5FA17F4E\comctl32.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstplaybin.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstpbutils-0.10.dll', Binary was not built
with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstcoreelements.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstbase-0.10.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdecodebin.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgsttypefindfunctions.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstavi.dll', Binary was not
built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
Files (x86)\Common Files\GStreamer\0.10\bin\libgstriff-0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstaudio-0.10.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstffmpeg.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avcodec-51.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avutil-49.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avformat-51.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmpegaudioparse.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmad.dll', Binary was not
built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
Files (x86)\Common Files\GStreamer\0.10\bin\libgsttag-0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstautodetect.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioconvert.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioresample.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\deps\liboil-0.3-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstvolume.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstcontroller-0.10.dll', Binary was not built
with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\bin\libgstinterfaces-0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstwaveform.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\winmm.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\SysWOW64\wintrust.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\crypt32.dll', No
symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\msasn1.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\imagehlp.dll', No
symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\wdmaud.drv', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\msacm32.drv', No
symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\msacm32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\midimap.dll', No
symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstffmpegcolorspace.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstvideoscale.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstvideo-0.10.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdirectdraw.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\ddraw.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\system32\dciman32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\msctf.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\msctfime.ime', No symbols loaded. The thread 'Win32
Thread' (0xb4c) has exited with code 0 (0x0). Unhandled exception at
0x02a65ba3 in gst-launch-0.10.exe: 0xC0000005:  Access violation reading
location 0x0515b000.

Maybe this is enough information for someone handy to fix the problem? If
it isn't, please tell me what else I can do.

-Marko


----- Original Message -----
From: "KwangYul Seo" <[hidden email]>
To: "Marko Mikkonen" <[hidden email]>
Cc: <[hidden email]>
Sent: Monday, January 07, 2008 10:41 PM
Subject: Re: [gst-devel] Playing video files on Windows


> Hello,
>
> Try the following command,
>
> gst-launch-0.10.exe playbin uri="file:///d:/path/a.avi"
>
> If it does not work on your computer, there might be a problem in your
> GStreamer installation.
>
> Regards,
> Kwang Yul Seo
>
>
> 2008/1/8, Marko Mikkonen <[hidden email]>:
>>
>>
>> Hello,
>>
>> What kind of command do you use to play any video file on Windows with
>> gst-launch (video _and_ sound)?
>>
>> So far I've tried playbin, but it doesn't work (there is no FILE
protocol
>> handler on Windows, apparently), so I suspect you should use decodebin?
>> I've been trying a million different combinations, but I just can't
find
>> the right one.
>>
>> -Marko
>>
>> P.S. I guess this is not really a developer question but instead a user
>> question, so perhaps this is not the right forum. But I couldn't find a
>> better place to ask. Is there a better place?
>>
>>
-------------------------------------------------------------------------
>> Check out the new SourceForge.net Marketplace.
>> It's the best place to buy or sell services for
>> just about anything Open Source.
>>
>>
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
>> _______________________________________________
>> gstreamer-devel mailing list
>> [hidden email]
>> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>>
>


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Playing video files on Windows

KwangYul Seo
Hello,

Yes. I see the same problem. GStreamer Windows binary can't play XVID video files on Windows XP. It always crashes a few minutes later. (The crash point is not deterministic though.) However, the same binary seems to work well in Windows Vista. 

I also compiled gstreamer and all of its dependent libraries including glib using mingw. But it still crashes showing the same symtoms. I also changed XVID decoder from ffmpeg to xvid, but it still crashed.

Any idea?


2008/1/9, Marko Mikkonen <[hidden email]>:

Hello,

Oh my gawd! I must have had something wrong in the path the previous time
I tried that command, because now it worked!

But there's still one problem. The video file I try to play, plays for a
few seconds and then an exception occurs in the program and it hangs. The
video in the file is XviD coded (GSpot gives a version XviD 1.1.0 Final)
and sound is MPEG-1 Layer 3. Container format is avi.

There's an error message (I don't know what it means) in the command
prompt window: OIL: ERROR liboilcpu.c 282:
oil_cpu_i386_kernel_restrict_flags():  Operating system is not known to
support SSE.  Assuming it does, which might cause problems

Call stack is as follows:

> avcodec-51.dll!02a65ba3()
  [Frames below may be incorrect and/or missing, no symbols loaded for
avcodec-51.dll]
  avcodec-51.dll!02a6ab61()
  libgstreamer-0.10.dll!0062824c()
  libgstreamer-0.10.dll!0062b7f0 ()
  libgstreamer-0.10.dll!0062824c()
  avcodec-51.dll!02972f17()
  avcodec-51.dll!02a7c1ae()
  avcodec-51.dll!029683d1()
  avcodec-51.dll!02a4f421()
  avcodec-51.dll!02a7d567()
  libgstreamer-0.10.dll!00628177 ()
  libgstffmpeg.dll!024f5824()
  libgstffmpeg.dll!024f68fa()
  avcodec-51.dll!02962abe()
  libgstffmpeg.dll!024f649a()
  libgstffmpeg.dll!024f6205()
  libgstffmpeg.dll!024f8485()
  libgstreamer-0.10.dll!00628163 ()
  libgstreamer-0.10.dll!00631886()
  libgstcoreelements.dll!022db234()
  libgstcoreelements.dll!022daf41()
  libgstreamer-0.10.dll!0063fc99()
  libglib-2.0-0.dll!672ff27a()
  libglib-2.0-0.dll!672fd7d5 ()
  libgthread-2.0-0.dll!649420da()
  msvcrt.dll!77bcb530()
  kernel32.dll!7d4dfe21()

Output window of Visual Studio says:

'gst-launch-0.10.exe': Loaded 'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\gst-launch-0.10.exe', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\ntdll.dll', No symbols loaded. 'gst-launch-0.10.exe ':
Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libglib-2.0-0.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\iconv.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\msvcrt.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\intl.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\advapi32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\rpcrt4.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\secur32.dll',
No symbols loaded. 'gst-launch-0.10.exe ': Loaded
'C:\WINDOWS\SysWOW64\ole32.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\SysWOW64\gdi32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\user32.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\shell32.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\SysWOW64\shlwapi.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll',
No symbols loaded. 'gst-launch-0.10.exe ': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libgobject-2.0-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\libgthread- 2.0-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\bin\libgstreamer-0.10.dll', Binary was
not built with debug information. ' gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\GTK2-Runtime\lib\libgmodule-2.0-0.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\libxml2.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\wsock32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\GTK2-Runtime\lib\zlib1.dll', Binary was not built with debug
information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\imm32.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded
'C:\WINDOWS\WinSxS\wow64_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_5FA17F4E\comctl32.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstplaybin.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe ': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstpbutils-0.10.dll', Binary was not built
with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstcoreelements.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstbase- 0.10.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdecodebin.dll',
Binary was not built with debug information. ' gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgsttypefindfunctions.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstavi.dll', Binary was not
built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
Files (x86)\Common Files\GStreamer\0.10\bin\libgstriff- 0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstaudio-0.10.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstffmpeg.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe ': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avcodec-51.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avutil- 49.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avformat-51.dll',
Binary was not built with debug information. ' gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmpegaudioparse.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmad.dll', Binary was not
built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
Files (x86)\Common Files\GStreamer\0.10\bin\libgsttag- 0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstautodetect.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioconvert.dll', Binary
was not built with debug information. ' gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioresample.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\deps\liboil-0.3-0.dll', Binary was not built with
debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\lib\gstreamer- 0.10\libgstvolume.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstcontroller-0.10.dll', Binary was not built
with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common Files\GStreamer\0.10\bin\libgstinterfaces-0.10.dll', Binary
was not built with debug information. 'gst-launch-0.10.exe ': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstwaveform.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\winmm.dll', No symbols loaded. ' gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\SysWOW64\wintrust.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\crypt32.dll', No
symbols loaded. 'gst-launch-0.10.exe ': Loaded
'C:\WINDOWS\SysWOW64\msasn1.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\imagehlp.dll', No
symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\wdmaud.drv', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\msacm32.drv', No
symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\msacm32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\midimap.dll', No
symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer- 0.10\libgstffmpegcolorspace.dll',
Binary was not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstvideoscale.dll ', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\Program Files (x86)\Common
Files\GStreamer\0.10\bin\libgstvideo-0.10.dll', Binary was not built with
debug information. ' gst-launch-0.10.exe': Loaded 'C:\Program Files
(x86)\Common
Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdirectdraw.dll', Binary was
not built with debug information. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\ddraw.dll', No symbols loaded. 'gst-launch-0.10.exe':
Loaded 'C:\WINDOWS\system32\dciman32.dll', No symbols loaded.
'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\msctf.dll', No symbols
loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll',
No symbols loaded. 'gst-launch-0.10.exe': Loaded
'C:\WINDOWS\system32\msctfime.ime', No symbols loaded. The thread 'Win32
Thread' (0xb4c) has exited with code 0 (0x0). Unhandled exception at
0x02a65ba3 in gst-launch-0.10.exe: 0xC0000005:  Access violation reading
location 0x0515b000.

Maybe this is enough information for someone handy to fix the problem? If
it isn't, please tell me what else I can do.

-Marko


----- Original Message -----
From: "KwangYul Seo" <[hidden email]>
To: "Marko Mikkonen" <[hidden email]>
Cc: <[hidden email]>
Sent: Monday, January 07, 2008 10:41 PM
Subject: Re: [gst-devel] Playing video files on Windows


> Hello,
>
> Try the following command,
>
> gst-launch-0.10.exe playbin uri="file:///d:/path/a.avi"
>
> If it does not work on your computer, there might be a problem in your
> GStreamer installation.
>
> Regards,
> Kwang Yul Seo
>
>
> 2008/1/8, Marko Mikkonen <[hidden email]>:
>>
>>
>> Hello,
>>
>> What kind of command do you use to play any video file on Windows with
>> gst-launch (video _and_ sound)?
>>
>> So far I've tried playbin, but it doesn't work (there is no FILE
protocol
>> handler on Windows, apparently), so I suspect you should use decodebin?
>> I've been trying a million different combinations, but I just can't
find
>> the right one.
>>
>> -Marko
>>
>> P.S. I guess this is not really a developer question but instead a user
>> question, so perhaps this is not the right forum. But I couldn't find a
>> better place to ask. Is there a better place?
>>
>>
-------------------------------------------------------------------------
>> Check out the new SourceForge.net Marketplace.
>> It's the best place to buy or sell services for
>> just about anything Open Source.
>>
>>
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
>> _______________________________________________
>> gstreamer-devel mailing list
>> [hidden email]
>> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>>
>


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Playing video files on Windows

Marko Mikkonen
My system is Windows Server 2003. I have no ideas what could be wrong and
I'm also so busy that I don't have time to try to solve the problem
seriously.

I filed a bug in bugzilla.

-Marko

----- Original Message -----
From: "KwangYul Seo" <[hidden email]>
To: "Marko Mikkonen" <[hidden email]>
Cc: <[hidden email]>
Sent: Wednesday, January 09, 2008 7:09 AM
Subject: Re: [gst-devel] Playing video files on Windows


> Hello,
>
> Yes. I see the same problem. GStreamer Windows binary can't play XVID
> video
> files on Windows XP. It always crashes a few minutes later. (The crash
> point
> is not deterministic though.) However, the same binary seems to work well
> in
> Windows Vista.
>
> I also compiled gstreamer and all of its dependent libraries including
> glib
> using mingw. But it still crashes showing the same symtoms. I also changed
> XVID decoder from ffmpeg to xvid, but it still crashed.
>
> Any idea?
>
>
> 2008/1/9, Marko Mikkonen <[hidden email]>:
>>
>>
>> Hello,
>>
>> Oh my gawd! I must have had something wrong in the path the previous time
>> I tried that command, because now it worked!
>>
>> But there's still one problem. The video file I try to play, plays for a
>> few seconds and then an exception occurs in the program and it hangs. The
>> video in the file is XviD coded (GSpot gives a version XviD 1.1.0 Final)
>> and sound is MPEG-1 Layer 3. Container format is avi.
>>
>> There's an error message (I don't know what it means) in the command
>> prompt window: OIL: ERROR liboilcpu.c 282:
>> oil_cpu_i386_kernel_restrict_flags():  Operating system is not known to
>> support SSE.  Assuming it does, which might cause problems
>>
>> Call stack is as follows:
>>
>> > avcodec-51.dll!02a65ba3()
>>   [Frames below may be incorrect and/or missing, no symbols loaded for
>> avcodec-51.dll]
>>   avcodec-51.dll!02a6ab61()
>>   libgstreamer-0.10.dll!0062824c()
>>   libgstreamer-0.10.dll!0062b7f0()
>>   libgstreamer-0.10.dll!0062824c()
>>   avcodec-51.dll!02972f17()
>>   avcodec-51.dll!02a7c1ae()
>>   avcodec-51.dll!029683d1()
>>   avcodec-51.dll!02a4f421()
>>   avcodec-51.dll!02a7d567()
>>   libgstreamer-0.10.dll!00628177()
>>   libgstffmpeg.dll!024f5824()
>>   libgstffmpeg.dll!024f68fa()
>>   avcodec-51.dll!02962abe()
>>   libgstffmpeg.dll!024f649a()
>>   libgstffmpeg.dll!024f6205()
>>   libgstffmpeg.dll!024f8485()
>>   libgstreamer-0.10.dll!00628163()
>>   libgstreamer-0.10.dll!00631886()
>>   libgstcoreelements.dll!022db234()
>>   libgstcoreelements.dll!022daf41()
>>   libgstreamer-0.10.dll!0063fc99()
>>   libglib-2.0-0.dll!672ff27a()
>>   libglib-2.0-0.dll!672fd7d5()
>>   libgthread-2.0-0.dll!649420da()
>>   msvcrt.dll!77bcb530()
>>   kernel32.dll!7d4dfe21()
>>
>> Output window of Visual Studio says:
>>
>> 'gst-launch-0.10.exe': Loaded 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\gst-launch-0.10.exe', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
>> 'gst-launch-0.10.exe':
>> Loaded 'C:\WINDOWS\SysWOW64\kernel32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\libglib-2.0-0.dll', Binary was not built with
>> debug
>> information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\iconv.dll', Binary was not built with debug
>> information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\SysWOW64\msvcrt.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\intl.dll', Binary was not built with debug
>> information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\SysWOW64\advapi32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\rpcrt4.dll', No
>> symbols
>> loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\secur32.dll',
>> No symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\SysWOW64\ole32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe':
>> Loaded 'C:\WINDOWS\SysWOW64\gdi32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\user32.dll', No
>> symbols
>> loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\shell32.dll',
>> No symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\SysWOW64\shlwapi.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', No
>> symbols
>> loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll',
>> No symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\libgobject-2.0-0.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\libgthread-2.0-0.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common Files\GStreamer\0.10\bin\libgstreamer-0.10.dll', Binary was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\GTK2-Runtime\lib\libgmodule-2.0-0.dll', Binary
>> was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\libxml2.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\WINDOWS\system32\wsock32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\GTK2-Runtime\lib\zlib1.dll', Binary was not built with debug
>> information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\imm32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe':
>> Loaded
>>
>> 'C:\WINDOWS\WinSxS\wow64_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_5FA17F4E\comctl32.dll',
>> No symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstplaybin.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\libgstpbutils-0.10.dll', Binary was not built
>> with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstcoreelements.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\libgstbase-0.10.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdecodebin.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgsttypefindfunctions.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstavi.dll', Binary was not
>> built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
>> Files (x86)\Common Files\GStreamer\0.10\bin\libgstriff-0.10.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\libgstaudio-0.10.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstffmpeg.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avcodec-51.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common Files\GStreamer\0.10\deps\avutil-49.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\deps\avformat-51.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmpegaudioparse.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstmad.dll', Binary was not
>> built with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program
>> Files (x86)\Common Files\GStreamer\0.10\bin\libgsttag-0.10.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstautodetect.dll', Binary was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioconvert.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstaudioresample.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\deps\liboil-0.3-0.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common Files\GStreamer\0.10\lib\gstreamer-0.10\libgstvolume.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\libgstcontroller-0.10.dll', Binary was not built
>> with debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common Files\GStreamer\0.10\bin\libgstinterfaces-0.10.dll', Binary
>> was not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstwaveform.dll', Binary was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\winmm.dll', No symbols loaded.
>> 'gst-launch-0.10.exe':
>> Loaded 'C:\WINDOWS\SysWOW64\wintrust.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\crypt32.dll', No
>> symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\SysWOW64\msasn1.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\imagehlp.dll', No
>> symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\wdmaud.drv', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\msacm32.drv', No
>> symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\msacm32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\midimap.dll', No
>> symbols loaded. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstffmpegcolorspace.dll',
>> Binary was not built with debug information. 'gst-launch-0.10.exe':
>> Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstvideoscale.dll', Binary was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\Program Files (x86)\Common
>> Files\GStreamer\0.10\bin\libgstvideo-0.10.dll', Binary was not built with
>> debug information. 'gst-launch-0.10.exe': Loaded 'C:\Program Files
>> (x86)\Common
>> Files\GStreamer\0.10\lib\gstreamer-0.10\libgstdirectdraw.dll', Binary was
>> not built with debug information. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\ddraw.dll', No symbols loaded.
>> 'gst-launch-0.10.exe':
>> Loaded 'C:\WINDOWS\system32\dciman32.dll', No symbols loaded.
>> 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\SysWOW64\msctf.dll', No symbols
>> loaded. 'gst-launch-0.10.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll',
>> No symbols loaded. 'gst-launch-0.10.exe': Loaded
>> 'C:\WINDOWS\system32\msctfime.ime', No symbols loaded. The thread 'Win32
>> Thread' (0xb4c) has exited with code 0 (0x0). Unhandled exception at
>> 0x02a65ba3 in gst-launch-0.10.exe: 0xC0000005:  Access violation reading
>> location 0x0515b000.
>>
>> Maybe this is enough information for someone handy to fix the problem? If
>> it isn't, please tell me what else I can do.
>>
>> -Marko
>>
>>
>> ----- Original Message -----
>> From: "KwangYul Seo" <[hidden email]>
>> To: "Marko Mikkonen" <[hidden email]>
>> Cc: <[hidden email]>
>> Sent: Monday, January 07, 2008 10:41 PM
>> Subject: Re: [gst-devel] Playing video files on Windows
>>
>>
>> > Hello,
>> >
>> > Try the following command,
>> >
>> > gst-launch-0.10.exe playbin uri="file:///d:/path/a.avi"
>> >
>> > If it does not work on your computer, there might be a problem in your
>> > GStreamer installation.
>> >
>> > Regards,
>> > Kwang Yul Seo
>> >
>> >
>> > 2008/1/8, Marko Mikkonen <[hidden email]>:
>> >>
>> >>
>> >> Hello,
>> >>
>> >> What kind of command do you use to play any video file on Windows with
>> >> gst-launch (video _and_ sound)?
>> >>
>> >> So far I've tried playbin, but it doesn't work (there is no FILE
>> protocol
>> >> handler on Windows, apparently), so I suspect you should use
>> >> decodebin?
>> >> I've been trying a million different combinations, but I just can't
>> find
>> >> the right one.
>> >>
>> >> -Marko
>> >>
>> >> P.S. I guess this is not really a developer question but instead a
>> >> user
>> >> question, so perhaps this is not the right forum. But I couldn't find
>> >> a
>> >> better place to ask. Is there a better place?
>> >>
>> >>
>> -------------------------------------------------------------------------
>> >> Check out the new SourceForge.net Marketplace.
>> >> It's the best place to buy or sell services for
>> >> just about anything Open Source.
>> >>
>> >>
>>
>> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
>> >> _______________________________________________
>> >> gstreamer-devel mailing list
>> >> [hidden email]
>> >> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>> >>
>> >
>>
>>
>> -------------------------------------------------------------------------
>> Check out the new SourceForge.net Marketplace.
>> It's the best place to buy or sell services for
>> just about anything Open Source.
>>
>> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
>> _______________________________________________
>> gstreamer-devel mailing list
>> [hidden email]
>> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>>
>


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel