-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement support for AMD AMF codecs
- Loading branch information
Showing
13 changed files
with
3,254 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ | |
!CMakeLists.txt | ||
!.clang-format | ||
!docker/gstreamer.control | ||
!docker/startup.sh | ||
!docker/startup.sh | ||
!docker/gstreamer/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/subprojects/gst-plugins-bad/sys/amfcodec/gstamfav1enc.cpp b/subprojects/gst-plugins-bad/sys/amfcodec/gstamfav1enc.cpp | ||
index 6280cc05e7..482c1f7f98 100644 | ||
--- a/subprojects/gst-plugins-bad/sys/amfcodec/gstamfav1enc.cpp | ||
+++ b/subprojects/gst-plugins-bad/sys/amfcodec/gstamfav1enc.cpp | ||
@@ -98,12 +98,26 @@ gst_amf_av1_enc_usage_get_type (void) | ||
*/ | ||
{AMF_VIDEO_ENCODER_AV1_USAGE_TRANSCODING, "Transcoding", "transcoding"}, | ||
|
||
+ /** | ||
+ * GstAmfAv1EncUsage::ultra-low-latency: | ||
+ * | ||
+ * Ultra Low Latency usage | ||
+ */ | ||
+ {AMF_VIDEO_ENCODER_AV1_USAGE_ULTRA_LOW_LATENCY, "Ultra Low Latency", "ultra-low-latency"}, | ||
+ | ||
/** | ||
* GstAmfAv1EncUsage::low-latency: | ||
* | ||
* Low Latency usage | ||
*/ | ||
{AMF_VIDEO_ENCODER_AV1_USAGE_LOW_LATENCY, "Low Latency", "low-latency"}, | ||
+ | ||
+ /** | ||
+ * GstAmfAv1EncUsage::webcam: | ||
+ * | ||
+ * Webcam usage | ||
+ */ | ||
+ {AMF_VIDEO_ENCODER_AV1_USAGE_WEBCAM, "Webcam", "webcam"}, | ||
{0, nullptr, nullptr} | ||
}; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.