[vlc-devel] [PATCH 18/19] vout_osd: move documentation to vlc_vout_osd.h

Kartik Ohri kartikohri13 at gmail.com
Thu Jul 23 15:18:33 CEST 2020


Move documentation for VLC API method vout_OSDEpg
from src/video_output/video_epg.c to include/vlc_vout_osd.h.
---
 include/vlc_vout_osd.h       | 6 ++++++
 src/video_output/video_epg.c | 6 ------
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/vlc_vout_osd.h b/include/vlc_vout_osd.h
index bc7871d176..5112e735dc 100644
--- a/include/vlc_vout_osd.h
+++ b/include/vlc_vout_osd.h
@@ -52,6 +52,12 @@ enum
     OSD_VERT_SLIDER,
 };
 
+/**
+ * \brief Show EPG information about the current program of an input item
+ * \param vout pointer to the vout the information is to be showed on
+ * \param p_input pointer to the input item the information is to be showed
+ * \param i_action osd_epg_action_e action
+ */
 VLC_API int vout_OSDEpg( vout_thread_t *, input_item_t * );
 
 /**
diff --git a/src/video_output/video_epg.c b/src/video_output/video_epg.c
index 447f105bf0..abfe85f4bc 100644
--- a/src/video_output/video_epg.c
+++ b/src/video_output/video_epg.c
@@ -542,12 +542,6 @@ static void OSDEpgDestroy(subpicture_t *subpic)
     free(sys);
 }
 
-/**
- * \brief Show EPG information about the current program of an input item
- * \param vout pointer to the vout the information is to be showed on
- * \param p_input pointer to the input item the information is to be showed
- * \param i_action osd_epg_action_e action
- */
 int vout_OSDEpg(vout_thread_t *vout, input_item_t *input )
 {
     vlc_epg_t *epg = NULL;
-- 
2.25.1



More information about the vlc-devel mailing list