mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst-libs/gst/riff/riff-media.c: mpegversion is an int
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data): mpegversion is an int * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init): don't try to create pad templates with NULL caps, use any caps instead.
This commit is contained in:
parent
a142f75cd9
commit
294a7f0fc9
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2004-04-22 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
(gst_riff_create_video_caps_with_data):
|
||||
mpegversion is an int
|
||||
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
|
||||
don't try to create pad templates with NULL caps, use any caps
|
||||
instead.
|
||||
|
||||
2004-04-20 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/sdl/Makefile.am: Link against libgstinterfaces, not
|
||||
|
|
|
@ -91,7 +91,7 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
|||
case GST_MAKE_FOURCC ('M', 'P', 'G', 'I'):
|
||||
caps = gst_caps_new_simple ("video/mpeg",
|
||||
"systemstream", G_TYPE_BOOLEAN, FALSE,
|
||||
"mpegversion", G_TYPE_BOOLEAN, 1, NULL);
|
||||
"mpegversion", G_TYPE_INT, 1, NULL);
|
||||
if (codec_name)
|
||||
*codec_name = g_strdup ("MPEG video");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue