-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -900,3 +900,15 @@ def __init__(self) -> None: | |
self.api = "SW" | ||
self.caps = self.caps + ",format=S16LE" | ||
super().__init__() | ||
|
||
|
||
@register_decoder | ||
class FluendoH264LCEVCDecoder(GStreamer10Video): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets stick to the naming we have in plugin -> FluendoLCEVCHWH264Decoder |
||
"""LCEVC-H264 decoder for GStreamer 1.0""" | ||
|
||
codec = Codec.H264 | ||
decoder_bin = "flulcevchwvah264dec" | ||
provider = "Fluendo" | ||
api = "HW" | ||
hw_acceleration = False | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should not be true? |
||
name = f"{provider}-{codec.value}-{api}-LCEVC-Gst1.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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). |
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