mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
openni2: Remove spurious gtk-doc markers
This commit is contained in:
parent
273e32d5aa
commit
b36e36f74a
1 changed files with 3 additions and 3 deletions
|
@ -549,7 +549,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** depth sensor **/
|
/* depth sensor */
|
||||||
rc = src->depth->create (*src->device, openni::SENSOR_DEPTH);
|
rc = src->depth->create (*src->device, openni::SENSOR_DEPTH);
|
||||||
if (rc == openni::STATUS_OK) {
|
if (rc == openni::STATUS_OK) {
|
||||||
rc = src->depth->start ();
|
rc = src->depth->start ();
|
||||||
|
@ -562,7 +562,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
|
||||||
openni::OpenNI::getExtendedError ());
|
openni::OpenNI::getExtendedError ());
|
||||||
}
|
}
|
||||||
|
|
||||||
/** color sensor **/
|
/* color sensor */
|
||||||
rc = src->color->create (*src->device, openni::SENSOR_COLOR);
|
rc = src->color->create (*src->device, openni::SENSOR_COLOR);
|
||||||
if (rc == openni::STATUS_OK) {
|
if (rc == openni::STATUS_OK) {
|
||||||
rc = src->color->start ();
|
rc = src->color->start ();
|
||||||
|
@ -582,7 +582,7 @@ openni2_initialise_devices (GstOpenni2Src * src)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get resolution and make sure is valid **/
|
/* Get resolution and make sure is valid */
|
||||||
if (src->depth->isValid () && src->color->isValid ()) {
|
if (src->depth->isValid () && src->color->isValid ()) {
|
||||||
src->depthVideoMode = src->depth->getVideoMode ();
|
src->depthVideoMode = src->depth->getVideoMode ();
|
||||||
src->colorVideoMode = src->color->getVideoMode ();
|
src->colorVideoMode = src->color->getVideoMode ();
|
||||||
|
|
Loading…
Reference in a new issue