mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 05:46:36 +00:00
gst/playback/gstplaybin2.c: Make the function signature of the _get_*_tags() functions match the signature of the vfu...
Original commit message from CVS: Patch by: José Alburquerque <jaalburqu svn gnome org> * gst/playback/gstplaybin2.c: Make the function signature of the _get_*_tags() functions match the signature of the vfuncs they implement, ie. return a GstTagList rather than a GstStructure, which is more correct, even if one is typedef'ed to the other (#518940).
This commit is contained in:
parent
d85688b8a2
commit
f61c20f1d2
2 changed files with 13 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2008-03-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
Patch by: José Alburquerque <jaalburqu svn gnome org>
|
||||||
|
|
||||||
|
* gst/playback/gstplaybin2.c:
|
||||||
|
Make the function signature of the _get_*_tags() functions match
|
||||||
|
the signature of the vfuncs they implement, ie. return a
|
||||||
|
GstTagList rather than a GstStructure, which is more correct,
|
||||||
|
even if one is typedef'ed to the other (#518940).
|
||||||
|
|
||||||
2008-03-02 Tim-Philipp Müller <tim at centricular dot net>
|
2008-03-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst-libs/gst/rtsp/gstrtspconnection.c:
|
* gst-libs/gst/rtsp/gstrtspconnection.c:
|
||||||
|
|
|
@ -430,11 +430,11 @@ static GstStateChangeReturn gst_play_bin_change_state (GstElement * element,
|
||||||
|
|
||||||
static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
|
static void gst_play_bin_handle_message (GstBin * bin, GstMessage * message);
|
||||||
|
|
||||||
static GstStructure *gst_play_bin_get_video_tags (GstPlayBin * playbin,
|
static GstTagList *gst_play_bin_get_video_tags (GstPlayBin * playbin,
|
||||||
gint stream);
|
gint stream);
|
||||||
static GstStructure *gst_play_bin_get_audio_tags (GstPlayBin * playbin,
|
static GstTagList *gst_play_bin_get_audio_tags (GstPlayBin * playbin,
|
||||||
gint stream);
|
gint stream);
|
||||||
static GstStructure *gst_play_bin_get_text_tags (GstPlayBin * playbin,
|
static GstTagList *gst_play_bin_get_text_tags (GstPlayBin * playbin,
|
||||||
gint stream);
|
gint stream);
|
||||||
|
|
||||||
static GstBuffer *gst_play_bin_convert_frame (GstPlayBin * playbin,
|
static GstBuffer *gst_play_bin_convert_frame (GstPlayBin * playbin,
|
||||||
|
|
Loading…
Reference in a new issue