From 9bd99d36703fcff0cb993af95b0b6cb2c8494256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 17 Jan 2017 13:07:57 +0200 Subject: [PATCH] player: Add missing documentation for deprecated functions --- gst-libs/gst/player/gstplayer-media-info.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gst-libs/gst/player/gstplayer-media-info.c b/gst-libs/gst/player/gstplayer-media-info.c index 90b6dc3377..0562d4931e 100644 --- a/gst-libs/gst/player/gstplayer-media-info.c +++ b/gst-libs/gst/player/gstplayer-media-info.c @@ -862,18 +862,39 @@ GList *gst_player_get_audio_streams (const GstPlayerMediaInfo * info); GList *gst_player_get_subtitle_streams (const GstPlayerMediaInfo * info); #endif +/** + * gst_player_get_video_streams: + * @info: a #GstPlayerMediaInfo + * + * Returns: (transfer none) (element-type GstPlayerVideoInfo): A #GList of + * matching #GstPlayerVideoInfo. + */ GList * gst_player_get_video_streams (const GstPlayerMediaInfo * info) { return gst_player_media_info_get_video_streams (info); } +/** + * gst_player_get_audio_streams: + * @info: a #GstPlayerMediaInfo + * + * Returns: (transfer none) (element-type GstPlayerAudioInfo): A #GList of + * matching #GstPlayerAudioInfo. + */ GList * gst_player_get_audio_streams (const GstPlayerMediaInfo * info) { return gst_player_media_info_get_audio_streams (info); } +/** + * gst_player_get_subtitle_streams: + * @info: a #GstPlayerMediaInfo + * + * Returns: (transfer none) (element-type GstPlayerSubtitleInfo): A #GList of + * matching #GstPlayerSubtitleInfo. + */ GList * gst_player_get_subtitle_streams (const GstPlayerMediaInfo * info) {