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

Filter video stream by frame format #1204

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

qwu16
Copy link
Collaborator

@qwu16 qwu16 commented Apr 20, 2022

No description provided.

@@ -64,7 +64,7 @@ void GstInternalIn::onFrame(const owt_base::Frame& frame)
return;
}

if(frame.additionalInfo.video.width == 1) {
if(frame->format > owt_base::FRAME_FORMAT_AV1 || frame->format < owt_base::FRAME_FORMAT_VP8) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't write condition like this. Use isVideoFrame function defined in MediaFramePipeline.h (https://github.com/open-webrtc-toolkit/owt-server/blob/master/source/core/owt_base/MediaFramePipeline.h#L209)

@@ -64,7 +64,7 @@ void GstInternalIn::onFrame(const owt_base::Frame& frame)
return;
}

if(frame.additionalInfo.video.width == 1) {
if(frame.format > owt_base::FRAME_FORMAT_AV1 || frame.format < owt_base::FRAME_FORMAT_VP8) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you read my previous comment?

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

Successfully merging this pull request may close these issues.

None yet

3 participants