[vlc-commits] vout: vout_Close() should be used when vout_Create() was used
Steve Lhomme
git at videolan.org
Fri Sep 20 13:54:08 CEST 2019
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Jul 1 13:56:15 2019 +0200| [054296854082e70580d3bcf85d77d7ebc3f6e800] | committer: Steve Lhomme
vout: vout_Close() should be used when vout_Create() was used
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=054296854082e70580d3bcf85d77d7ebc3f6e800
---
include/vlc_vout.h | 2 +-
src/video_output/vout_internal.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc_vout.h b/include/vlc_vout.h
index 5d66131825..adfc15a0f0 100644
--- a/include/vlc_vout.h
+++ b/include/vlc_vout.h
@@ -100,7 +100,7 @@ enum vlc_vout_order
/**
* Destroys a vout.
*
- * This function closes and releases a vout created by vout_Request().
+ * This function closes and releases a vout created by vout_Create().
*
* \param vout the vout to close
*/
diff --git a/src/video_output/vout_internal.h b/src/video_output/vout_internal.h
index a48637a714..29f2144f82 100644
--- a/src/video_output/vout_internal.h
+++ b/src/video_output/vout_internal.h
@@ -226,7 +226,7 @@ void vout_StopDisplay(vout_thread_t *);
/**
* Destroys a vout.
*
- * This function closes and releases a vout created by vout_Request().
+ * This function closes and releases a vout created by vout_Create().
*
* \param p_vout the vout to close
*/
More information about the vlc-commits
mailing list