-
Notifications
You must be signed in to change notification settings - Fork 26
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
COM-12602-Replace erroneous h266 reference decoder in fluster: #215
Conversation
rsanchez87
commented
Nov 22, 2024
- add h266_reference_decoder (VVCSoftware_VTM-H266)
- maintain h266_vvdec_decoder (VVdeC, the Fraunhofer Versatile Video Decoder)
- update README.md
* add h266_reference_decoder (VVCSoftware_VTM-H266) * maintain h266_vvdec_decoder (VVdeC, the Fraunhofer Versatile Video Decoder) * update README.md
After testing with VVCSoftware_VTM-H266 new reference decoder, md5sum in
|
fluster/decoders/gstreamer.py
Outdated
"""GStreamer H.266/VVC VVCSoftware_VTM decoder implementation for GStreamer 1.0""" | ||
|
||
codec = Codec.H266 | ||
decoder_bin = " Decoder " |
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.
Which bin is this?
fluster/decoders/h266_vvdec.py
Outdated
@@ -21,7 +21,7 @@ | |||
|
|||
|
|||
@register_decoder | |||
class H266JCTVTDecoder(Decoder): | |||
class H266VVCDecoder(Decoder): | |||
"""VVdeC H.266/VVC reference decoder implementation""" |
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.
it is no reference:
"""VVdeC H.266/VVC reference decoder implementation""" | |
"""VVdeC H.266/VVC decoder implementation""" |
* remove vvc_vtm decoder from gstreamer.py * remove reference from vvc decoder * change authors in h266_vvc_vtm.py h266_vvdec.py decoders
fluster/decoders/h266_vvc_vtm.py
Outdated
|
||
@register_decoder | ||
class H266VVCVTMDecoder(Decoder): | ||
"""VVdeC H.266/VVC reference decoder implementation""" |
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.
it is not VVdeC. It is VTM.
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.
done