mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +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);
|
GList *gst_player_get_subtitle_streams (const GstPlayerMediaInfo * info);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gst_player_get_video_streams:
|
||||||
|
* @info: a #GstPlayerMediaInfo
|
||||||
|
*
|
||||||
|
* Returns: (transfer none) (element-type GstPlayerVideoInfo): A #GList of
|
||||||
|
* matching #GstPlayerVideoInfo.
|
||||||
|
*/
|
||||||
GList *
|
GList *
|
||||||
gst_player_get_video_streams (const GstPlayerMediaInfo * info)
|
gst_player_get_video_streams (const GstPlayerMediaInfo * info)
|
||||||
{
|
{
|
||||||
return gst_player_media_info_get_video_streams (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 *
|
GList *
|
||||||
gst_player_get_audio_streams (const GstPlayerMediaInfo * info)
|
gst_player_get_audio_streams (const GstPlayerMediaInfo * info)
|
||||||
{
|
{
|
||||||
return gst_player_media_info_get_audio_streams (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 *
|
GList *
|
||||||
gst_player_get_subtitle_streams (const GstPlayerMediaInfo * info)
|
gst_player_get_subtitle_streams (const GstPlayerMediaInfo * info)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue