summaryrefslogtreecommitdiff
path: root/data/frames
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-04-04 03:36:21 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-04-04 03:36:21 +0300
commit6df1ad61158e9c2744786193619b873b3dedcd6b (patch)
tree4384c09e2346645d5c1f296e5e97bcfc3945478e /data/frames
parentce2c37356c674e5893f80786616355b4659b43ad (diff)
Use correct .ppm extension for PPM images
The reference images used by the test scripts are in PPM format, not PNM. Use the correct file extension. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'data/frames')
-rw-r--r--data/frames/frame-reference-1024x768.ppm.gz (renamed from data/frames/frame-reference-1024x768.pnm.gz)bin21247 -> 21247 bytes
-rw-r--r--data/frames/meson.build4
2 files changed, 2 insertions, 2 deletions
diff --git a/data/frames/frame-reference-1024x768.pnm.gz b/data/frames/frame-reference-1024x768.ppm.gz
index 7c1a975..7c1a975 100644
--- a/data/frames/frame-reference-1024x768.pnm.gz
+++ b/data/frames/frame-reference-1024x768.ppm.gz
Binary files differ
diff --git a/data/frames/meson.build b/data/frames/meson.build
index f4ec8e3..a9d79f2 100644
--- a/data/frames/meson.build
+++ b/data/frames/meson.build
@@ -20,8 +20,8 @@ foreach table : tables
install_dir : 'frames')
endforeach
-custom_target(input : files('frame-reference-1024x768.pnm.gz'),
- output : 'frame-reference-1024x768.pnm',
+custom_target(input : files('frame-reference-1024x768.ppm.gz'),
+ output : 'frame-reference-1024x768.ppm',
capture : true,
command : [gzip, '-cd', '@INPUT@'],
install : true,