After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 380825 - make avimux accept video/mpeg in versions 1, 2 and 4
make avimux accept video/mpeg in versions 1, 2 and 4
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal trivial
: 0.10.5
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-11-30 09:56 UTC by Jerome Alet
Modified: 2006-11-30 16:50 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jerome Alet 2006-11-30 09:56:55 UTC
avimux only accepts version 1 of video/mpeg as input. This untested patch should fix the problem :

Index: gstavimux.c
===================================================================
RCS file: /cvs/gstreamer/gst-plugins-good/gst/avi/gstavimux.c,v
retrieving revision 1.87
diff -u -r1.87 gstavimux.c
--- gstavimux.c 16 Oct 2006 18:22:46 -0000      1.87
+++ gstavimux.c 30 Nov 2006 09:55:34 -0000
@@ -136,7 +136,7 @@
         "width = (int) [ 16, 4096 ], "
         "height = (int) [ 16, 4096 ], "
         "framerate = (fraction) [ 0, MAX ], "
-        "mpegversion = (int) 1, "
+        "mpegversion = (int) { 1,2,4 }, "
         "systemstream = (boolean) FALSE; "
         "video/x-h263, "
         "width = (int) [ 16, 4096 ], "
Comment 1 Stefan Sauer (gstreamer, gtkdoc dev) 2006-11-30 16:50:00 UTC
2006-11-30  Stefan Kost  <ensonic@users.sf.net>

	* gst/avi/gstavimux.c:
	  accept all mpegversions,fixes #380825
	  spotted by: Jerome Alet