**• Jetson Nano Devkit
**• DeepStream 5.0.0
**• Jetpack 4.3
**• TensorRT 7.1.3
**• Bug
When we passing nv12 buffers to nvstreammux and after that converting them to rgba all is working as expected:
gst-launch-1.0 filesrc location=streams/sample_720p.h264 ! h264parse ! nvv4l2decoder ! "video/x-raw(memory:NVMM),format=NV12" ! m.sink_0 nvstreammux name=m batch-size=1 width=1280 height=720 ! nvvideoconvert ! "video/x-raw(memory:NVMM),format=RGBA" ! nvinfer config-file-path= configs/deepstream-app/config_infer_primary.txt batch-size=1 unique-id=1 ! nvdsosd ! nvegltransform ! nveglglessink
Buf if we have ->rgba conversion before nvstreammux no text renders
gst-launch-1.0 filesrc location=streams/sample_720p.h264 ! h264parse ! nvv4l2decoder ! nvvideoconvert ! "video/x-raw(memory:NVMM),format=RGBA" ! m.sink_0 nvstreammux name=m batch-size=1 width=1280 height=720 ! nvinfer config-file-path= configs/deepstream-app/config_infer_primary.txt batch-size=1 unique-id=1 ! nvdsosd ! nvegltransform ! nveglglessink