@@ -161,8 +161,6 @@ public:
const std::string &model();
const V4L2SubdeviceCapability &caps() const { return caps_; }
- static std::unique_ptr<V4L2Subdevice>
- fromEntityName(const MediaDevice *media, const std::string &entity);
static std::unique_ptr<V4L2Subdevice>
fromEntityName(std::shared_ptr<const MediaDevice>, const std::string &entity);
@@ -226,8 +226,6 @@ public:
void setDequeueTimeout(utils::Duration timeout);
Signal<> dequeueTimeout;
- static std::unique_ptr<V4L2VideoDevice>
- fromEntityName(const MediaDevice *media, const std::string &entity);
static std::unique_ptr<V4L2VideoDevice>
fromEntityName(std::shared_ptr<const MediaDevice>, const std::string &entity);
@@ -1756,7 +1756,7 @@ const std::string &V4L2Subdevice::model()
* \return A newly created V4L2Subdevice on success, nullptr otherwise
*/
std::unique_ptr<V4L2Subdevice>
-V4L2Subdevice::fromEntityName(const MediaDevice *media,
+V4L2Subdevice::fromEntityName(std::shared_ptr<const MediaDevice> media,
const std::string &entity)
{
MediaEntity *mediaEntity = media->getEntityByName(entity);
@@ -1766,21 +1766,6 @@ V4L2Subdevice::fromEntityName(const MediaDevice *media,
return std::make_unique<V4L2Subdevice>(mediaEntity);
}
-/**
- * \brief Create a new video subdevice instance from \a entity in media device
- * \a media
- * \param[in] media The media device where the entity is registered
- * \param[in] entity The media entity name
- *
- * \return A newly created V4L2Subdevice on success, nullptr otherwise
- */
-std::unique_ptr<V4L2Subdevice>
-V4L2Subdevice::fromEntityName(std::shared_ptr<const MediaDevice> media,
- const std::string &entity)
-{
- return fromEntityName(media.get(), entity);
-}
-
std::string V4L2Subdevice::logPrefix() const
{
return "'" + entity_->name() + "'";
@@ -2099,7 +2099,7 @@ void V4L2VideoDevice::watchdogExpired()
* \return A newly created V4L2VideoDevice on success, nullptr otherwise
*/
std::unique_ptr<V4L2VideoDevice>
-V4L2VideoDevice::fromEntityName(const MediaDevice *media,
+V4L2VideoDevice::fromEntityName(std::shared_ptr<const MediaDevice> media,
const std::string &entity)
{
MediaEntity *mediaEntity = media->getEntityByName(entity);
@@ -2109,21 +2109,6 @@ V4L2VideoDevice::fromEntityName(const MediaDevice *media,
return std::make_unique<V4L2VideoDevice>(mediaEntity);
}
-/**
- * \brief Create a new video device instance from \a entity in media device
- * \a media
- * \param[in] media The media device where the entity is registered
- * \param[in] entity The media entity name
- *
- * \return A newly created V4L2VideoDevice on success, nullptr otherwise
- */
-std::unique_ptr<V4L2VideoDevice>
-V4L2VideoDevice::fromEntityName(std::shared_ptr<const MediaDevice> media,
- const std::string &entity)
-{
- return fromEntityName(media.get(), entity);
-}
-
/**
* \brief Convert \a PixelFormat to a V4L2PixelFormat supported by the device
* \param[in] pixelFormat The PixelFormat to convert