summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2020-03-15 10:46:24 +0000
committerPhilippe Normand <philn@igalia.com>2020-03-15 10:47:02 +0000
commitb36e36f74af871fa68522f8602c0464b53895814 (patch)
tree75f1346c3b150af5780b91f3cded17ed806a7cf9
parent273e32d5aadd83a9b2510ac127530800fa76ee73 (diff)
downloadgstreamer-plugins-bad-b36e36f74af871fa68522f8602c0464b53895814.tar.gz
openni2: Remove spurious gtk-doc markers
-rw-r--r--ext/openni2/gstopenni2src.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/openni2/gstopenni2src.cpp b/ext/openni2/gstopenni2src.cpp
index c68b2a0b0..05cef1015 100644
--- a/ext/openni2/gstopenni2src.cpp
+++ b/ext/openni2/gstopenni2src.cpp
@@ -549,7 +549,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
return FALSE;
}
- /** depth sensor **/
+ /* depth sensor */
rc = src->depth->create (*src->device, openni::SENSOR_DEPTH);
if (rc == openni::STATUS_OK) {
rc = src->depth->start ();
@@ -562,7 +562,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
openni::OpenNI::getExtendedError ());
}
- /** color sensor **/
+ /* color sensor */
rc = src->color->create (*src->device, openni::SENSOR_COLOR);
if (rc == openni::STATUS_OK) {
rc = src->color->start ();
@@ -582,7 +582,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
return FALSE;
}
- /** Get resolution and make sure is valid **/
+ /* Get resolution and make sure is valid */
if (src->depth->isValid () && src->color->isValid ()) {
src->depthVideoMode = src->depth->getVideoMode ();
src->colorVideoMode = src->color->getVideoMode ();