-
Notifications
You must be signed in to change notification settings - Fork 27
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
H264: add fluendo's LCEVC decoder for H264 #166
Conversation
Issue: OCP-5268
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is failing on check with Trailing spaces
|
||
|
||
@register_decoder | ||
class FluendoH264LCEVCDecoder(GStreamer10Video): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets stick to the naming we have in plugin -> FluendoLCEVCHWH264Decoder
decoder_bin = "flulcevchwvah264dec" | ||
provider = "Fluendo" | ||
api = "HW" | ||
hw_acceleration = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be true?
provider = "Fluendo" | ||
api = "HW" | ||
hw_acceleration = False | ||
name = f"{provider}-{codec.value}-{api}-LCEVC-Gst1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like we are not really consistent with naming, but i like the idea of having plugins name in front of Gst1.0 like in Fluendo-H.265-HW-hwvah265dec-Gst1.0 (in place of LCEVC in this case, put lcevchwvah264dec).
@@ -900,3 +900,15 @@ def __init__(self) -> None: | |||
self.api = "SW" | |||
self.caps = self.caps + ",format=S16LE" | |||
super().__init__() | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ci is failing on check -> trailing whitespace here
Issue: OCP-5268