Demuxer in_system_timestamp error

Please provide complete information as applicable to your setup.

**• Hardware Platform (Jetson / GPU)**T4
• DeepStream Version5
• JetPack Version (valid for Jetson only)
• TensorRT Version7.0.0.11
**• NVIDIA GPU Driver Version (valid for GPU only)**440+
• Issue Type( questions, new requirements, bugs)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)

demuxer in_system_timestamp plugin comes when I turn of Tiled display. Can you give the reason?
When I turn it on it does not come. Kindly give reason

Can you give all information of reproducing this error?

• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)

[application]
enable-perf-measurement=1
perf-measurement-interval-sec=1
#gie-kitti-output-dir=streamscl

[tiled-display]
enable=0
rows=7
columns=5
width=1280
height=720
gpu-id=0
nvbuf-memory-type=0

[source0]
enable=1
#Type - 1=CameraV4L2 2=URI 3=MultiURI
type=3
num-sources=1
#uri=file://Videos_for_Usecase_1/UseCase1-1.mp4
uri=file://Videos_for_Usecase_1/UseCase1-2.mp4
intra-decode-enable=0
gpu-id=0
cudadec-memtype=0

[streammux]
gpu-id=0
batch-size=1
batched-push-timeout=40000

Set muxer output width and height

width=1920
height=1080
nvbuf-memory-type=0

[sink0]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=1
sync=0
source-id=0
gpu-id=0

[osd]
enable=0
gpu-id=0
border-width=3
text-size=15
text-color=1;1;1;1;
text-bg-color=0.3;0.3;0.3;1
font=Serif
show-clock=0
clock-x-offset=800
clock-y-offset=820
clock-text-size=12
clock-color=1;0;0;0
nvbuf-memory-type=0

[primary-gie]
enable=1
gpu-id=0
batch-size=1
gie-unique-id=1
interval=0
labelfile-path=ssd_coco_labels.txt
model-engine-file=sample_ssd_relu6.uff_b1_gpu0_int8.engine
config-file=config_infer_primary_ssd.txt
nvbuf-memory-type=0

[secondary-gie1]
enable=1
model-engine-file=any_model.engine
batch-size=1
gpu-id=0
gie-unique-id=2
operate-on-gie-id=1
operate-on-class-ids=2;
config-file=config_infer_reid.txt

What kind of error?

Its not actually an error . As you can see Comp name=demuxer in_system_timestamp comes only when I do not enable Tiled display.
I want to know what the reason is

Please refer to deepstream-app source codes, when nvmultistreamtiler is disabled, the nvstreamdemux will be enabled, so you will see the log for nvstreamdemux. When nvmultistreamtiler is enabled, there is no nvstreamdemux in the pipeline, so there is no related log.

This is deepstream-app sample implementation.