Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task: Check if dsGetVideoDevice returning dsERR_OPERATION_NOT_SUPPORTED results in any stability issues in upper layer builds #30

Open
arun-madhavan-013 opened this issue Dec 13, 2024 · 0 comments

Comments

@arun-madhavan-013
Copy link
Contributor

Subject

As per L1 L2 Test fix, below implemenattion has been done. Ensure the middleware and upper layers are not getting affected due to this.

dsError_t  dsGetVideoDevice(int index, intptr_t *handle)
{
	if(false == _bVideoDeviceInited)
	{
		return dsERR_NOT_INITIALIZED;
	}
	if (index != 0 || NULL == handle)
	{
		return = dsERR_INVALID_PARAM;
	}
	return dsERR_OPERATION_NOT_SUPPORTED;
}

Notes (Optional)

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant