mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
player: Add missing documentation for deprecated functions
This commit is contained in:
parent
2609aaa48b
commit
9bd99d3670
1 changed files with 21 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue