Decode 10-bit hevc video

Hi,

I would like to decode 10-bit hevc video on TX2.

In the following topic, it says 10-bit hevc decoding is supported in “next release”.
https://devtalk.nvidia.com/default/topic/1013161/jetson-tx2/h265-contents/

Does “next release” mean L4T R28.1 ?

I tried to decode 10-bit hevc video on L4T R28.1, but I could not decode it.

The pipeline is following.
Gstreamer Version 1.12.0

gst-launch-1.0 filesrc location=10bit_hevc.ts ! tsdemux ! queue ! h265parse ! omxh265dec ! nvoverlaysink

In TX1, the above pipeline works well.

Please give me any advices.

The following is media file information.

General
ID                                       : 4369 (0x1111)
Complete name                            : 10bit_hevc.ts
Format                                   : MPEG-TS
File size                                : 1.22 GiB
Duration                                 : 6mn 28s
Overall bit rate mode                    : Constant
Overall bit rate                         : 27.0 Mbps

Video
ID                                       : 256 (0x100)
Menu ID                                  : 1 (0x1)
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Main 10@L5.1@Main
Codec ID                                 : 36
Duration                                 : 6mn 25s
Width                                    : 3 840 pixels
Height                                   : 2 160 pixels
Display aspect ratio                     : 16:9
Frame rate                               : 59.940 (60000/1001) fps
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 10 bits
Color range                              : Limited
Color primaries                          : BT.709
Transfer characteristics                 : BT.709
Matrix coefficients                      : BT.709

Audio
ID                                       : 257 (0x101)
Menu ID                                  : 1 (0x1)
Format                                   : AAC
Format/Info                              : Advanced Audio Codec
Format version                           : Version 4
Format profile                           : LC
Muxing mode                              : ADTS
Codec ID                                 : 15
Duration                                 : 6mn 25s
Bit rate mode                            : Variable
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Sampling rate                            : 48.0 KHz
Frame rate                               : 46.875 fps (1024 spf)
Compression mode                         : Lossy

On TX2, it requiresnvvidconv to do 10-bit to 8-bit conversion. Please try
gst-launch-1.0 filesrc location=10bit_hevc.ts ! tsdemux ! queue ! h265parse ! omxh265dec ! nvvidconv ! nvoverlaysink

Hi DaneLLL,

Thank you for your reply.

I had misunderstood the cause why my pipeline does not work.

Your pipeline worked.