![]() |
Jetson Linux Multimedia API Reference32.4.3 Release |
NVIDIA V4L2 Video Decoder Description and Extensions.
The video decoder device node is
/dev/nvhost-nvdec
OUTPUT PLANE | CAPTURE PLANE |
---|---|
V4L2_PIX_FMT_H264 | V4L2_PIX_FMT_NV12M |
V4L2_PIX_FMT_H265 | V4L2_PIX_FMT_NV12M |
MEMORY | OUTPUT PLANE | CAPTURE PLANE |
---|---|---|
V4L2_MEMORY_MMAP | Y | Y |
V4L2_MEMORY_DMABUF | N | N |
V4L2_MEMORY_USERPTR | N | N |
Event | Purpose |
---|---|
V4L2_EVENT_RESOLUTION_CHANGE | Resolution of the stream has changed. |
When the decoder generates a V4L2_EVENT_RESOLUTION_CHANGE
event, the application calls STREAMOFF
on the capture plane to tell the decoder to deallocate the current buffers by calling REQBUF with count zero, get the new capture plane format, and then proceed with setting up the buffers for the capture plane.
In case of decoder, the buffer format might differ from the display resolution. The application must use VIDIOC_G_CROP
to get the display resolution.
The following sequence must be followed for sending EOS and recieving EOS from the decoder.
v4l2_buffer.m.planes[0].bytesused = 0
).v4l2_buffer.m.planes[0].bytesused == 0
)Decoder supports reporting stream header parsing error info as input frame metadata. See V4L2_CID_MPEG_VIDEO_ERROR_REPORTING
, V4L2_CID_MPEG_VIDEODEC_INPUT_METADATA
and v4l2_ctrl_video_metadata
for more information.
Decoder supports reporting frame related metadata, including error reports and DPB info. See V4L2_CID_MPEG_VIDEO_ERROR_REPORTING
, V4L2_CID_MPEG_VIDEODEC_METADATA
and v4l2_ctrl_video_metadata
for more information.
Data Structures | |
struct | v4l2_ctrl_videodec_statusmetadata_ |
Holds the decoder error status metadata for the frame. More... | |
struct | v4l2_ctrl_videodec_refframe_metadata_ |
Holds the the frame specific metadata for a reference frame. More... | |
struct | v4l2_ctrl_videodec_currentframe_metadata_ |
Holds the the frame specific metadata for the current frame. More... | |
struct | v4l2_ctrl_videodec_dpbinfometadata_ |
Holds the decoder DPB info metadata. More... | |
struct | v4l2_ctrl_h264dec_bufmetadata_ |
Holds H.264 specific decoder metadata for the frame. More... | |
struct | v4l2_ctrl_hevcdec_bufmetadata_ |
Holds H.265 specific decoder metadata for the frame. More... | |
struct | v4l2_ctrl_videodec_inputbuf_metadata_ |
Holds the video decoder input header error metadata for a frame. More... | |
struct | v4l2_ctrl_videodec_outputbuf_metadata_ |
Holds the video decoder output metadata for a frame. More... | |
Macros | |
#define | V4L2_CID_MPEG_VIDEO_DISABLE_COMPLETE_FRAME_INPUT (V4L2_CID_MPEG_BASE+515) |
Defines the Control ID to indicate to the decoder that the input buffers do not contain complete buffers. More... | |
#define | V4L2_CID_MPEG_VIDEO_DISABLE_DPB (V4L2_CID_MPEG_BASE+516) |
Defines the Control ID to disable decoder DPB management. More... | |
#define | V4L2_CID_MPEG_VIDEO_ERROR_REPORTING (V4L2_CID_MPEG_BASE+517) |
Defines the Control ID to enable decoder error and metadata reporting. More... | |
#define | V4L2_CID_MPEG_VIDEO_SKIP_FRAMES (V4L2_CID_MPEG_BASE+518) |
Defines the Control ID to set the skip frames property of the decoder. More... | |
#define | V4L2_CID_MPEG_VIDEODEC_METADATA (V4L2_CID_MPEG_BASE+519) |
Defines the Control ID to get the decoder output metadata. More... | |
#define | V4L2_CID_MPEG_VIDEODEC_INPUT_METADATA (V4L2_CID_MPEG_BASE+520) |
Defines the Control ID to get the decoder input header error metadata. More... | |
#define | V4L2_CID_VIDEODEC_DISPLAYDATA_PRESENT (V4L2_CID_MPEG_BASE+521) |
Defines the Control ID to check if display data is present. More... | |
#define | V4L2_CID_VIDEODEC_HDR_MASTERING_DISPLAY_DATA (V4L2_CID_MPEG_BASE+522) |
Defines the Control ID to get display data if V4L2_CID_VIDEODEC_DISPLAYDATA_PRESENT returns true. More... | |
Enumerations | |
enum | v4l2_skip_frames_type { V4L2_SKIP_FRAMES_TYPE_NONE = 0, V4L2_SKIP_FRAMES_TYPE_NONREF = 1, V4L2_SKIP_FRAMES_TYPE_DECODE_IDR_ONLY = 2 } |
Enum v4l2_skip_frames_type, possible methods for decoder skip frames. More... | |
enum | v4l2_cuda_mem_type { V4L2_CUDA_MEM_TYPE_DEVICE = 0, V4L2_CUDA_MEM_TYPE_PINNED = 1, V4L2_CUDA_MEM_TYPE_UNIFIED = 2 } |
Enum v4l2_cuda_mem_type, possible methods for cuda memory tpye. More... | |
enum | v4l2_videodec_input_error_type { V4L2_DEC_ERROR_NONE = 0x0, V4L2_DEC_ERROR_SPS = 0x1, V4L2_DEC_ERROR_PPS = 0x2, V4L2_DEC_ERROR_SLICE_HDR = 0x4, V4L2_DEC_ERROR_MISSING_REF_FRAME = 0x8, V4L2_DEC_ERROR_VPS = 0x10 } |
Enum v4l2_videodec_input_error_type, possible error types for input stream. More... | |
#define V4L2_CID_MPEG_VIDEO_DISABLE_COMPLETE_FRAME_INPUT (V4L2_CID_MPEG_BASE+515) |
Defines the Control ID to indicate to the decoder that the input buffers do not contain complete buffers.
A boolean value must be supplied with this control.
Definition at line 486 of file v4l2_nv_extensions.h.
#define V4L2_CID_MPEG_VIDEO_DISABLE_DPB (V4L2_CID_MPEG_BASE+516) |
Defines the Control ID to disable decoder DPB management.
A boolean value must be supplied with this control.
Definition at line 498 of file v4l2_nv_extensions.h.
#define V4L2_CID_MPEG_VIDEO_ERROR_REPORTING (V4L2_CID_MPEG_BASE+517) |
Defines the Control ID to enable decoder error and metadata reporting.
A boolean value must be supplied with this control.
Definition at line 508 of file v4l2_nv_extensions.h.
#define V4L2_CID_MPEG_VIDEO_SKIP_FRAMES (V4L2_CID_MPEG_BASE+518) |
Defines the Control ID to set the skip frames property of the decoder.
Decoder must be configured to skip certain types of frames. One v4l2_skip_frames_type
must be passed.
Definition at line 520 of file v4l2_nv_extensions.h.
#define V4L2_CID_MPEG_VIDEODEC_INPUT_METADATA (V4L2_CID_MPEG_BASE+520) |
Defines the Control ID to get the decoder input header error metadata.
A pointer to a valid v4l2_ctrl_video_metadata
structure must be supplied with this control.
Definition at line 550 of file v4l2_nv_extensions.h.
#define V4L2_CID_MPEG_VIDEODEC_METADATA (V4L2_CID_MPEG_BASE+519) |
Defines the Control ID to get the decoder output metadata.
A pointer to a valid v4l2_ctrl_video_metadata
structure must be supplied with this control.
Definition at line 535 of file v4l2_nv_extensions.h.
#define V4L2_CID_VIDEODEC_DISPLAYDATA_PRESENT (V4L2_CID_MPEG_BASE+521) |
Defines the Control ID to check if display data is present.
This control returns true if HDR metadata is present in the stream.
Definition at line 558 of file v4l2_nv_extensions.h.
#define V4L2_CID_VIDEODEC_HDR_MASTERING_DISPLAY_DATA (V4L2_CID_MPEG_BASE+522) |
Defines the Control ID to get display data if V4L2_CID_VIDEODEC_DISPLAYDATA_PRESENT returns true.
This control returns display data such as display_primaries, white_point and display_parameter_luminance required for display module.
Definition at line 567 of file v4l2_nv_extensions.h.
typedef struct v4l2_ctrl_h264dec_bufmetadata_ v4l2_ctrl_h264dec_bufmetadata |
Holds H.264 specific decoder metadata for the frame.
typedef struct v4l2_ctrl_hevcdec_bufmetadata_ v4l2_ctrl_hevcdec_bufmetadata |
Holds H.265 specific decoder metadata for the frame.
Holds the the frame specific metadata for the current frame.
Holds the decoder DPB info metadata.
Holds the video decoder input header error metadata for a frame.
Holds the video decoder output metadata for a frame.
Holds the the frame specific metadata for a reference frame.
Holds the decoder error status metadata for the frame.
enum v4l2_cuda_mem_type |
Enum v4l2_cuda_mem_type, possible methods for cuda memory tpye.
Enumerator | |
---|---|
V4L2_CUDA_MEM_TYPE_DEVICE |
Memory type device. |
V4L2_CUDA_MEM_TYPE_PINNED |
Memory type host. |
V4L2_CUDA_MEM_TYPE_UNIFIED |
Memory type unified. |
Definition at line 1224 of file v4l2_nv_extensions.h.
Enum v4l2_skip_frames_type, possible methods for decoder skip frames.
Enumerator | |
---|---|
V4L2_SKIP_FRAMES_TYPE_NONE |
Do not skip any frame. |
V4L2_SKIP_FRAMES_TYPE_NONREF |
Skip all non-reference frames. |
V4L2_SKIP_FRAMES_TYPE_DECODE_IDR_ONLY |
Skip all frames except IDR. |
Definition at line 1213 of file v4l2_nv_extensions.h.
Enum v4l2_videodec_input_error_type, possible error types for input stream.
Definition at line 1235 of file v4l2_nv_extensions.h.