bool StreamProfile::is_valid()

in sample_app/onvif_camera_mock/artifacts/onvif_srvd/src/ServiceContext.cpp [576:584]


bool StreamProfile::is_valid() const
{
    return ( !name.empty()  &&
             !url.empty()   &&
             (width  != -1) &&
             (height != -1) &&
             (type   != -1)
           );
}