• Hardware Platform (Jetson / GPU)
GPU NVIDIA GeForce RTX 2080
• DeepStream Version
6.1.0
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
515.48.07
• Issue Type( questions, new requirements, bugs)
bug
• 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)
Launch a pipeline that converts JPEG image to PNG.
gst-launch-1.0 -v \
filesrc location=test.jpg ! \
nvjpegdec ! \
nvvideoconvert ! \
pngenc ! \
filesink location=nvjpegdec.png
test.jpg:
nvjpegdec.png
is transparent. The value of alpha channel byte is 0x01
(should be 0xff
). Probably nvjpegdec sets alpha channel value in range 0 - 1 (float) rather than 0 - 255 (int).
nvjpegdec.png:
Log:
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
/GstPipeline:pipeline0/GstJpegDec:jpegdec0.GstPad:src: caps = video/x-raw, format=(string)I420, width=(int)640, height=(int)480, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg, colorimetry=(string)1:4:0:0, framerate=(fraction)0/1
/GstPipeline:pipeline0/Gstnvvideoconvert:nvvideoconvert0.GstPad:src: caps = video/x-raw, width=(int)640, height=(int)480, framerate=(fraction)0/1, pixel-aspect-ratio=(fraction)1/1, format=(string)RGBA, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, block-linear=(boolean)false
/GstPipeline:pipeline0/GstPngEnc:pngenc0.GstPad:sink: caps = video/x-raw, width=(int)640, height=(int)480, framerate=(fraction)0/1, pixel-aspect-ratio=(fraction)1/1, format=(string)RGBA, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, block-linear=(boolean)false
/GstPipeline:pipeline0/Gstnvvideoconvert:nvvideoconvert0.GstPad:sink: caps = video/x-raw, format=(string)I420, width=(int)640, height=(int)480, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)jpeg, colorimetry=(string)1:4:0:0, framerate=(fraction)0/1
/GstPipeline:pipeline0/GstPngEnc:pngenc0.GstPad:src: caps = image/png, width=(int)640, height=(int)480, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)sRGB, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono
/GstPipeline:pipeline0/GstFileSink:filesink0.GstPad:sink: caps = image/png, width=(int)640, height=(int)480, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)0/1, interlace-mode=(string)progressive, colorimetry=(string)sRGB, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
Got EOS from element "pipeline0".
Execution ended after 0:00:00.000095077
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
Content of the frame produced by nvjpegdec
. Note 01
byte on alpha channel.
$ gst-launch-1.0 \
filesrc location=test.jpg ! \
nvjpegdec ! \
nvvideoconvert ! \
'video/x-raw,format=RGBA' ! \
fakesink dump=true
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
Using GPU 0 (NVIDIA GeForce RTX 2080, 46 SMs, 1024 th/SM max, CC 7.5, ECC off)
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
00000000 (0x7ff75ec4e220): eb eb eb 01 eb eb eb 01 eb eb eb 01 eb eb eb 01 ................
00000010 (0x7ff75ec4e230): eb eb eb 01 eb eb eb 01 eb eb eb 01 eb eb eb 01 ................
...
0012bfe0 (0x7ff75ed7a200): 7d 7d 7d 01 d0 d0 d0 01 3e 3e 3e 01 8e 8e 8e 01 }}}.....>>>.....
0012bff0 (0x7ff75ed7a210): 65 65 65 01 48 48 48 01 1f 1f 1f 01 cd cd cd 01 eee.HHH.........
Got EOS from element "pipeline0".
Execution ended after 0:00:00.557729472
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)