srtpenc is missing from gstreamer

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

srtpenc is missing from gstreamer

55件の閲覧回数
tusharvernekar
Contributor II

Dear All,

I’m trying to use the GStreamer element srtpenc on our i.MX8MP board with 5.15 kirkstone, but it’s showing as “no element srtpenc,” even though gstreamer1.0-plugins-bad is installed. 

 

tusharvernekar_1-1764070702633.png

 

 

0 件の賞賛
返信
1 返信

33件の閲覧回数
Bio_TICFSL
NXP TechSupport
NXP TechSupport

Hello,

The srtpenc plugin is part of the gstreamer1.0-plugins-bad package, but sometimes not all elements within a package are built by default due to missing dependencies or configuration options.

To resolve this issue, you need to ensure that the libsrtp development package is installed as it's a dependency for building the srtpenc element. You can add this to your Yocto build by modifying your local.conf file or creating a custom recipe to include libsrtp2-dev.

For your i.MX8MP board running 5.15 kirkstone, add the following to your local.conf:

```
IMAGE_INSTALL:append = " libsrtp2-dev"
PACKAGECONFIG:append:pn-gstreamer1.0-plugins-bad = " srtp"
```

Then rebuild the gstreamer1.0-plugins-bad package:

```
bitbake -c cleansstate gstreamer1.0-plugins-bad
bitbake gstreamer1.0-plugins-bad
```

After rebuilding your image and deploying it to your board, the srtpenc element should be available for your GStreamer pipelines.

You can verify the element's availability by running:
```
gst-inspect-1.0 srtpenc
```

Regards

0 件の賞賛
返信