Update video decoder & reader supported format list#6377
Conversation
- Removes references to unsupported CPU codecs - Updates operator documentation to reflect changes in supported formats Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
bcf5d9d to
c2c0e8f
Compare
|
!build |
|
CI MESSAGE: [53041683]: BUILD STARTED |
|
| Filename | Overview |
|---|---|
| dali/operators/video/decoder/video_decoder_cpu.cc | Docstring updated: H.264/AVC and H.265/HEVC moved from "CPU and Mixed" section to "Mixed backend only" to reflect removal of CPU codec support (follow-up to #6352). |
| dali/operators/video/reader/video_reader_decoder_op.cc | Docstring updated: H.264/AVC and H.265/HEVC moved from "CPU and GPU" section to "GPU backend only", consistent with the decoder operator change. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
subgraph Before["Before (Incorrect)"]
B_CPU["CPU + Mixed/GPU backends"]
B_CPU --> B_H264["H.264/AVC"]
B_CPU --> B_H265["H.265/HEVC"]
B_CPU --> B_VP8["VP8"]
B_CPU --> B_VP9["VP9"]
B_CPU --> B_MJPEG["MJPEG"]
B_GPU["Mixed/GPU only"]
B_GPU --> B_AV1["AV1"]
B_GPU --> B_MPEG4["MPEG-4"]
end
subgraph After["After (Correct)"]
A_CPU["CPU + Mixed/GPU backends"]
A_CPU --> A_VP8["VP8"]
A_CPU --> A_VP9["VP9"]
A_CPU --> A_MJPEG["MJPEG"]
A_GPU["Mixed/GPU only"]
A_GPU --> A_AV1["AV1"]
A_GPU --> A_MPEG4["MPEG-4"]
A_GPU --> A_H264["H.264/AVC"]
A_GPU --> A_H265["H.265/HEVC"]
end
Reviews (2): Last reviewed commit: "Update video decoder & reader supported ..." | Re-trigger Greptile
|
!build |
|
CI MESSAGE: [53044242]: BUILD STARTED |
|
CI MESSAGE: [53044242]: BUILD PASSED |
|
CI MESSAGE: [53044242]: BUILD PASSED |
|
CI MESSAGE: [53041683]: BUILD PASSED |
Category:
Other (e.g. Documentation, Tests, Configuration)
Description:
Additional information:
Affected modules and functionalities:
Key points relevant for the review:
Tests:
Checklist
Documentation
DALI team only
Requirements
REQ IDs: N/A
JIRA TASK: DALI-4712