-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gst-omx: Attempt at using realtek libraries with khronos headers
- Loading branch information
Showing
2 changed files
with
40 additions
and
2 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
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,30 @@ | ||
diff -uprN ../gst-omx-1.20.3.orig/omx/gstomx.c ./omx/gstomx.c | ||
--- ../gst-omx-1.20.3.orig/omx/gstomx.c 2022-06-15 22:36:22.000000000 +0000 | ||
+++ ./omx/gstomx.c 2023-02-01 01:35:38.186835742 +0000 | ||
@@ -3531,7 +3531,7 @@ static const GGetTypeFunction types[] = | ||
, gst_omx_theora_dec_get_type | ||
#endif | ||
#ifdef HAVE_HEVC | ||
- , gst_omx_h265_enc_get_type, gst_omx_h265_dec_get_type | ||
+ , gst_omx_h265_dec_get_type | ||
#endif | ||
}; | ||
|
||
diff -uprN ../gst-omx-1.20.3.orig/omx/meson.build ./omx/meson.build | ||
--- ../gst-omx-1.20.3.orig/omx/meson.build 2022-06-15 22:36:22.000000000 +0000 | ||
+++ ./omx/meson.build 2023-02-01 01:35:09.434496828 +0000 | ||
@@ -39,7 +39,6 @@ endif | ||
|
||
if have_omx_hevc | ||
omx_sources += 'gstomxh265utils.c' | ||
- omx_sources += 'gstomxh265enc.c' | ||
omx_sources += 'gstomxh265dec.c' | ||
endif | ||
|
||
@@ -60,4 +59,4 @@ gstomx = library('gstomx', | ||
install_dir : plugins_install_dir, | ||
) | ||
|
||
-plugins = [gstomx] | ||
\ No newline at end of file | ||
+plugins = [gstomx] |