Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
01bc68f9
Commit
01bc68f9
authored
Dec 20, 2005
by
Thomas Vander Stichele
Browse files
stop making fun of older compilers
Original commit message from CVS: stop making fun of older compilers
parent
b4b2b62a
Changes
2
Hide whitespace changes
Inline
Side-by-side
gst-libs/gst/audio/gstbaseaudiosink.c
View file @
01bc68f9
...
...
@@ -113,14 +113,14 @@ gst_base_audio_sink_class_init (GstBaseAudioSinkClass * klass)
longdesc
=
g_strdup_printf
(
"Size of audio buffer in microseconds (use -1 for default of %"
G_GUINT64_FORMAT
"
µ
s)"
,
DEFAULT_BUFFER_TIME
/
GST_USECOND
);
G_GUINT64_FORMAT
"
u
s)"
,
DEFAULT_BUFFER_TIME
/
GST_USECOND
);
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
PROP_BUFFER_TIME
,
g_param_spec_int64
(
"buffer-time"
,
"Buffer Time"
,
longdesc
,
-
1
,
G_MAXINT64
,
DEFAULT_BUFFER_TIME
,
G_PARAM_READWRITE
));
g_free
(
longdesc
);
longdesc
=
g_strdup_printf
(
"Audio latency in microseconds (use -1 for default of %"
G_GUINT64_FORMAT
"
µ
s)"
,
DEFAULT_LATENCY_TIME
/
GST_USECOND
);
G_GUINT64_FORMAT
"
u
s)"
,
DEFAULT_LATENCY_TIME
/
GST_USECOND
);
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
PROP_LATENCY_TIME
,
g_param_spec_int64
(
"latency-time"
,
"Latency Time"
,
longdesc
,
-
1
,
G_MAXINT64
,
DEFAULT_LATENCY_TIME
,
G_PARAM_READWRITE
));
...
...
gst-libs/gst/audio/gstbaseaudiosrc.c
View file @
01bc68f9
...
...
@@ -100,14 +100,14 @@ gst_base_audio_src_class_init (GstBaseAudioSrcClass * klass)
longdesc
=
g_strdup_printf
(
"Size of audio buffer in microseconds (use -1 for default of %"
G_GUINT64_FORMAT
"
µ
s)"
,
DEFAULT_BUFFER_TIME
/
GST_USECOND
);
G_GUINT64_FORMAT
"
u
s)"
,
DEFAULT_BUFFER_TIME
/
GST_USECOND
);
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
PROP_BUFFER_TIME
,
g_param_spec_int64
(
"buffer-time"
,
"Buffer Time"
,
longdesc
,
-
1
,
G_MAXINT64
,
DEFAULT_BUFFER_TIME
,
G_PARAM_READWRITE
));
g_free
(
longdesc
);
longdesc
=
g_strdup_printf
(
"Audio latency in microseconds (use -1 for default of %"
G_GUINT64_FORMAT
"
µ
s)"
,
DEFAULT_LATENCY_TIME
/
GST_USECOND
);
G_GUINT64_FORMAT
"
u
s)"
,
DEFAULT_LATENCY_TIME
/
GST_USECOND
);
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
PROP_LATENCY_TIME
,
g_param_spec_int64
(
"latency-time"
,
"Latency Time"
,
longdesc
,
-
1
,
G_MAXINT64
,
DEFAULT_LATENCY_TIME
,
G_PARAM_READWRITE
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment