Skip to content

Commit

Permalink
Fix: Remove unsupported 720p resolution from tests
Browse files Browse the repository at this point in the history
- Add disclaimer about 720p in docs.
- The 720p resolution is not supported by MTL for v210 at the moment.
This is a MTL bug, but the GStreamer plugin does not need to support it.

Signed-off-by: Kasiewicz, Marek <marek.kasiewicz@intel.com>
  • Loading branch information
Sakoram committed Feb 10, 2025
1 parent 467110c commit 0831f8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 64 deletions.
5 changes: 4 additions & 1 deletion ecosystem/gstreamer_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,14 @@ Video plugins for MTL that are able to send, receive synchronous video via the M
The `mtl_st20p_tx` plugin supports the following pad capabilities:

- **Formats**: `v210`, `I422_10LE`
- **Width Range**: 64 to 16384
- **Width Range**: 64 to 16384*
- **Height Range**: 64 to 8704
- **Framerate Range**: `2398/100`, `24`, `25`, `2997/100`, `30`, `50`, `5994/100`, `60`, `100`,
`11988/100`, `120`

\* Resolution width for v210 format has to be divisible by 3, so the plugin does not support 720p and 1440p.
To be fixed in the future.

[More information about GStreamer capabilities (GstCaps)](https://gstreamer.freedesktop.org/documentation/gstreamer/gstcaps.html)

**Arguments**
Expand Down
63 changes: 0 additions & 63 deletions tests/validation/tests/Engine/media_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,69 +2,6 @@
# Copyright(c) 2024-2025 Intel Corporation

yuv_files = dict(
i720p23={
"filename": "HDR_BBC_v4_008_Penguin1_1280x720_10bit_25Hz_P422_180frames.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "2398/100",
},
i720p24={
"filename": "HDR_BBC_v4_008_Penguin1_1280x720_10bit_25Hz_P422_180frames.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "24",
},
i720p25={
"filename": "HDR_BBC_v4_008_Penguin1_1280x720_10bit_25Hz_P422_180frames.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "25",
},
i720p29={
"filename": "Plalaedit_Pedestrian_10bit_1280x720_30Hz_P420_To_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "2997/100",
},
i720p30={
"filename": "Plalaedit_Pedestrian_10bit_1280x720_30Hz_P420_To_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "30",
},
i720p50={
"filename": "ParkJoy_1280x720_10bit_50Hz_P422_To_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "50",
},
i720p59={
"filename": "Netflix_Crosswalk_1280x720_10bit_60Hz_P422_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "5994/100",
},
i720p60={
"filename": "Netflix_Crosswalk_1280x720_10bit_60Hz_P422_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "60",
},
i720p119={
"filename": "Netflix_Crosswalk_1280x720_10bit_60Hz_P422_yuv422p10be_To_yuv422YCBCR10be.yuv",
"format": "YUV_422_10bit",
"width": 1280,
"height": 720,
"fps": "11988/100",
},
i1080p23={
"filename": "HDR_BBC_v4_008_Penguin1_1920x1080_10bit_25Hz_180frames_yuv422p10be_To_yuv422rfc4175be10.yuv",
"format": "YUV_422_10bit",
Expand Down

0 comments on commit 0831f8d

Please sign in to comment.