summaryrefslogtreecommitdiff
path: root/apps/recorder/resize.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/resize.h')
-rw-r--r--apps/recorder/resize.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/resize.h b/apps/recorder/resize.h
index d71a3e7f1c..7e0a991eea 100644
--- a/apps/recorder/resize.h
+++ b/apps/recorder/resize.h
@@ -113,10 +113,11 @@ struct img_part {
113/* intermediate type used by the scaler for color output. greyscale version 113/* intermediate type used by the scaler for color output. greyscale version
114 uses uint32_t 114 uses uint32_t
115*/ 115*/
116struct uint32_rgb { 116struct uint32_argb {
117 uint32_t r; 117 uint32_t r;
118 uint32_t g; 118 uint32_t g;
119 uint32_t b; 119 uint32_t b;
120 uint32_t a;
120}; 121};
121#endif 122#endif
122 123