diff --git a/docs/libs/gstreamer-libs-sections.txt b/docs/libs/gstreamer-libs-sections.txt index e6bf397f2e..19f04d5af9 100644 --- a/docs/libs/gstreamer-libs-sections.txt +++ b/docs/libs/gstreamer-libs-sections.txt @@ -235,7 +235,7 @@ gst_base_parse_set_min_frame_size gst_base_parse_set_passthrough gst_base_parse_set_syncable gst_base_parse_set_has_timing_info -gst_base_parse_set_frame_props +gst_base_parse_set_frame_rate gst_base_parse_convert_default gst_base_parse_add_index_entry diff --git a/docs/plugins/gstreamer-plugins.args b/docs/plugins/gstreamer-plugins.args index 9fa076ba26..507789f70a 100644 --- a/docs/plugins/gstreamer-plugins.args +++ b/docs/plugins/gstreamer-plugins.args @@ -991,7 +991,7 @@ GstQueue2::ring-buffer-max-size guint64 -<= G_MAXUINT + rw Max. ring buffer size (bytes) Max. amount of data in the ring buffer (bytes, 0 = disabled. diff --git a/libs/gst/base/gstbaseparse.c b/libs/gst/base/gstbaseparse.c index 5916950052..5c6d128454 100644 --- a/libs/gst/base/gstbaseparse.c +++ b/libs/gst/base/gstbaseparse.c @@ -165,7 +165,7 @@ * * * Configure various baseparse parameters using @gst_base_parse_set_seek and - * @gst_base_parse_set_frame_props. + * @gst_base_parse_set_frame_rate. * * * In particular, if subclass is unable to determine a duration, but @@ -2818,7 +2818,7 @@ gst_base_parse_set_min_frame_size (GstBaseParse * parse, guint min_size) } /** - * gst_base_parse_set_frame_props: + * gst_base_parse_set_frame_rate: * @parse: the #GstBaseParse to set * @fps_num: frames per second (numerator). * @fps_den: frames per second (denominator). @@ -2834,7 +2834,7 @@ gst_base_parse_set_min_frame_size (GstBaseParse * parse, guint min_size) * Since: 0.10.33 */ void -gst_base_parse_set_frame_props (GstBaseParse * parse, guint fps_num, +gst_base_parse_set_frame_rate (GstBaseParse * parse, guint fps_num, guint fps_den, guint lead_in, guint lead_out) { g_return_if_fail (parse != NULL); diff --git a/libs/gst/base/gstbaseparse.h b/libs/gst/base/gstbaseparse.h index c613cc64a6..ca42feef71 100644 --- a/libs/gst/base/gstbaseparse.h +++ b/libs/gst/base/gstbaseparse.h @@ -283,7 +283,7 @@ void gst_base_parse_set_syncable (GstBaseParse * parse, void gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough); -void gst_base_parse_set_frame_props (GstBaseParse * parse, +void gst_base_parse_set_frame_rate (GstBaseParse * parse, guint fps_num, guint fps_den, guint lead_in, diff --git a/win32/common/libgstbase.def b/win32/common/libgstbase.def index cccb58b2c5..7f6a83cc68 100644 --- a/win32/common/libgstbase.def +++ b/win32/common/libgstbase.def @@ -14,6 +14,18 @@ EXPORTS gst_adapter_take gst_adapter_take_buffer gst_adapter_take_list + gst_base_parse_add_index_entry + gst_base_parse_convert_default + gst_base_parse_frame_init + gst_base_parse_get_type + gst_base_parse_push_frame + gst_base_parse_set_average_bitrate + gst_base_parse_set_duration + gst_base_parse_set_frame_rate + gst_base_parse_set_has_timing_info + gst_base_parse_set_min_frame_size + gst_base_parse_set_passthrough + gst_base_parse_set_syncable gst_base_sink_do_preroll gst_base_sink_get_blocksize gst_base_sink_get_last_buffer