Skip to content

Commit dec7d6f

Browse files
authored
Merge pull request #26 from TexasInstruments/feature/update-readme
Update README.md
2 parents 40a4f51 + 353dd9d commit dec7d6f

File tree

1 file changed

+31
-13
lines changed

1 file changed

+31
-13
lines changed

README.md

Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,44 @@ The project can be either be built natively in the board, or cross compiled from
1212
PSDKR_PATH=/path/to/the/ti-processor-rsdk
1313

1414
# Customize build for your SDK
15-
mkdir build && cd build
16-
../crossbuild/environment $PSDKR_PATH > aarch64-none-linux-gnu.ini
15+
crossbuild/environment $PSDKR_PATH > aarch64-none-linux-gnu.ini
1716

1817
# Configure and build the project
19-
meson .. --cross-file aarch64-none-linux-gnu.ini --cross-file ../crossbuild/crosscompile.ini
20-
ninja
18+
meson build --cross-file aarch64-none-linux-gnu.ini --cross-file crossbuild/crosscompile.ini
19+
ninja -C build
2120
DESTDIR=$PSDKR_PATH/targetfs ninja install
2221
```
2322

2423
## Compiling the Project Natively
2524

2625
```bash
27-
mkdir build && cd build
28-
meson .. --prefix=/usr -Dpkg_config_path=../pkgconfig
29-
ninja
30-
ninja test
31-
sudo ninja install
26+
meson build --prefix=/usr -Dpkg_config_path=pkgconfig
27+
ninja -C build
28+
ninja -C build test
29+
sudo ninja -C build install
3230
```
3331

34-
<div style="color:gray">
35-
<img src="https://developer.ridgerun.com/wiki/images/2/2c/Underconstruction.png">
36-
This project is currently under construction.
37-
</div>
32+
# GStreamer elements
33+
```bash
34+
root@j7-2:~# gst-inspect-1.0 tiovx
35+
Plugin Details:
36+
Name tiovx
37+
Description GStreamer plugin for TIOVX
38+
Filename /usr/lib/gstreamer-1.0/libgsttiovx.so
39+
Version 0.0.1
40+
License Proprietary
41+
Source module GstTIOVX
42+
Binary package GstTIOVX source release
43+
Origin URL http://ti.com
44+
45+
tiovxcolorconvert: TIOVX ColorConvert
46+
tiovxmultiscaler: TIOVX MultiScaler
47+
48+
2 features:
49+
+-- 2 elements
50+
```
51+
52+
| Extended Documentation |
53+
| ----------- |
54+
| [GstTIOVXColorConvert](https://github.com/TexasInstruments/edgeai-gst-plugins/wiki/tiovxcolorconvert) |
55+
| [GstTIOVXMultiScaler](https://github.com/TexasInstruments/edgeai-gst-plugins/wiki/tiovxmultiscaler) |

0 commit comments

Comments
 (0)