mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
fix build and small issues
Original commit message from CVS: fix build and small issues
This commit is contained in:
parent
71308351a8
commit
a1b6e4c148
5 changed files with 15 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
|||
2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
|
||||
fix property
|
||||
* gst/gstcaps.c:
|
||||
fix doc string
|
||||
* po/POTFILES.in:
|
||||
rename typefind source file
|
||||
|
||||
2004-04-28 David Schleef <ds@schleef.org>
|
||||
|
||||
Several new files from Steve Lhomme's MSVC patch (bug #141317):
|
||||
|
|
|
@ -238,7 +238,7 @@ gst_fakesrc_class_init (GstFakeSrcClass * klass)
|
|||
G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NUM_BUFFERS,
|
||||
g_param_spec_int ("num-buffers", "num-buffers",
|
||||
"Number of buffers to output before sending EOS", G_MININT, G_MAXINT,
|
||||
"Number of buffers to output before sending EOS", -1, G_MAXINT,
|
||||
0, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_EOS,
|
||||
g_param_spec_boolean ("eos", "eos", "Send out the EOS event?", TRUE,
|
||||
|
|
|
@ -1334,9 +1334,9 @@ gst_caps_replace (GstCaps ** caps, GstCaps * newcaps)
|
|||
* @caps: a #GstCaps
|
||||
*
|
||||
* Converts @caps to a string representation. This string representation
|
||||
* can be converted back to a #GstCaps by #gst_caps_from_string().
|
||||
* can be converted back to a #GstCaps by #gst_caps_from_string.
|
||||
*
|
||||
* Returns: a string representing @caps
|
||||
* Returns: a newly allocated string representing @caps.
|
||||
*/
|
||||
gchar *
|
||||
gst_caps_to_string (const GstCaps * caps)
|
||||
|
@ -1428,7 +1428,7 @@ gst_caps_from_string_inplace (GstCaps * caps, const gchar * string)
|
|||
*
|
||||
* Converts @caps from a string representation.
|
||||
*
|
||||
* Returns: a new #GstCaps
|
||||
* Returns: a newly allocated #GstCaps
|
||||
*/
|
||||
GstCaps *
|
||||
gst_caps_from_string (const gchar * string)
|
||||
|
|
|
@ -238,7 +238,7 @@ gst_fakesrc_class_init (GstFakeSrcClass * klass)
|
|||
G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NUM_BUFFERS,
|
||||
g_param_spec_int ("num-buffers", "num-buffers",
|
||||
"Number of buffers to output before sending EOS", G_MININT, G_MAXINT,
|
||||
"Number of buffers to output before sending EOS", -1, G_MAXINT,
|
||||
0, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_EOS,
|
||||
g_param_spec_boolean ("eos", "eos", "Send out the EOS event?", TRUE,
|
||||
|
|
|
@ -11,7 +11,7 @@ gst/elements/gstfilesrc.c
|
|||
gst/elements/gstidentity.c
|
||||
gst/elements/gstmultifilesrc.c
|
||||
gst/elements/gstpipefilter.c
|
||||
gst/elements/gsttypefind.c
|
||||
gst/elements/gsttypefindelement.c
|
||||
gst/parse/grammar.y
|
||||
tools/gst-inspect.c
|
||||
tools/gst-launch.c
|
||||
|
|
Loading…
Reference in a new issue