cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % U U Y Y V V Y Y % |
| 7 | % U U Y Y V V Y Y % |
| 8 | % U U Y V V Y % |
| 9 | % U U Y V V Y % |
| 10 | % UUU Y V Y % |
| 11 | % % |
| 12 | % % |
| 13 | % Read/Write 16bit/pixel Interleaved YUV Image Format % |
| 14 | % % |
| 15 | % Software Design % |
cristy | de984cd | 2013-12-01 14:49:27 +0000 | [diff] [blame] | 16 | % Cristy % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
Cristy | d842011 | 2021-01-01 14:52:00 -0500 | [diff] [blame] | 20 | % Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 21 | % dedicated to making software imaging solutions freely available. % |
| 22 | % % |
| 23 | % You may not use this file except in compliance with the License. You may % |
| 24 | % obtain a copy of the License at % |
| 25 | % % |
Cristy | 83d74de | 2018-10-13 10:17:25 -0400 | [diff] [blame] | 26 | % https://imagemagick.org/script/license.php % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 27 | % % |
| 28 | % Unless required by applicable law or agreed to in writing, software % |
| 29 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 30 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 31 | % See the License for the specific language governing permissions and % |
| 32 | % limitations under the License. % |
| 33 | % % |
| 34 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 35 | % |
| 36 | % |
| 37 | */ |
| 38 | |
| 39 | /* |
| 40 | Include declarations. |
| 41 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 42 | #include "MagickCore/studio.h" |
| 43 | #include "MagickCore/blob.h" |
| 44 | #include "MagickCore/blob-private.h" |
| 45 | #include "MagickCore/cache.h" |
| 46 | #include "MagickCore/color.h" |
| 47 | #include "MagickCore/colorspace.h" |
| 48 | #include "MagickCore/exception.h" |
| 49 | #include "MagickCore/exception-private.h" |
| 50 | #include "MagickCore/image.h" |
| 51 | #include "MagickCore/image-private.h" |
| 52 | #include "MagickCore/list.h" |
| 53 | #include "MagickCore/magick.h" |
| 54 | #include "MagickCore/memory_.h" |
| 55 | #include "MagickCore/monitor.h" |
| 56 | #include "MagickCore/monitor-private.h" |
| 57 | #include "MagickCore/pixel-accessor.h" |
| 58 | #include "MagickCore/quantum-private.h" |
| 59 | #include "MagickCore/static.h" |
| 60 | #include "MagickCore/string_.h" |
| 61 | #include "MagickCore/module.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 62 | |
| 63 | /* |
| 64 | Forward declarations. |
| 65 | */ |
| 66 | static MagickBooleanType |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 67 | WriteUYVYImage(const ImageInfo *,Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 71 | % % |
| 72 | % % |
| 73 | % % |
| 74 | % R e a d U Y V Y I m a g e % |
| 75 | % % |
| 76 | % % |
| 77 | % % |
| 78 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 79 | % |
| 80 | % ReadUYVYImage() reads an image in the UYVY format and returns it. It |
| 81 | % allocates the memory necessary for the new Image structure and returns a |
| 82 | % pointer to the new image. |
| 83 | % |
| 84 | % The format of the ReadUYVYImage method is: |
| 85 | % |
| 86 | % Image *ReadUYVYImage(const ImageInfo *image_info, |
| 87 | % ExceptionInfo *exception) |
| 88 | % |
| 89 | % A description of each parameter follows: |
| 90 | % |
| 91 | % o image_info: the image info. |
| 92 | % |
| 93 | % o exception: return any errors or warnings in this structure. |
| 94 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 95 | */ |
| 96 | static Image *ReadUYVYImage(const ImageInfo *image_info, |
| 97 | ExceptionInfo *exception) |
| 98 | { |
| 99 | Image |
| 100 | *image; |
| 101 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 102 | MagickBooleanType |
| 103 | status; |
| 104 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 105 | ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 106 | x; |
| 107 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 108 | Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 109 | *q; |
| 110 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 111 | ssize_t |
| 112 | y; |
| 113 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 114 | unsigned char |
| 115 | u, |
| 116 | v, |
| 117 | y1, |
| 118 | y2; |
| 119 | |
| 120 | /* |
| 121 | Open image file. |
| 122 | */ |
| 123 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 124 | assert(image_info->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 125 | if (image_info->debug != MagickFalse) |
| 126 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 127 | image_info->filename); |
| 128 | assert(exception != (ExceptionInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 129 | assert(exception->signature == MagickCoreSignature); |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 130 | image=AcquireImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 131 | if ((image->columns == 0) || (image->rows == 0)) |
| 132 | ThrowReaderException(OptionError,"MustSpecifyImageSize"); |
| 133 | if ((image->columns % 2) != 0) |
| 134 | image->columns++; |
Cristy | 096bddc | 2018-06-07 18:24:26 -0400 | [diff] [blame] | 135 | (void) CopyMagickString(image->filename,image_info->filename, |
| 136 | MagickPathExtent); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 137 | status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); |
| 138 | if (status == MagickFalse) |
Cristy | 096bddc | 2018-06-07 18:24:26 -0400 | [diff] [blame] | 139 | return(DestroyImage(image)); |
cristy | d429702 | 2010-09-16 22:59:09 +0000 | [diff] [blame] | 140 | if (DiscardBlobBytes(image,image->offset) == MagickFalse) |
| 141 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 142 | image->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 143 | image->depth=8; |
| 144 | if (image_info->ping != MagickFalse) |
| 145 | { |
| 146 | (void) CloseBlob(image); |
| 147 | return(GetFirstImageInList(image)); |
| 148 | } |
cristy | acabb84 | 2014-12-14 23:36:33 +0000 | [diff] [blame] | 149 | status=SetImageExtent(image,image->columns,image->rows,exception); |
| 150 | if (status == MagickFalse) |
| 151 | return(DestroyImageList(image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 152 | /* |
| 153 | Accumulate UYVY, then unpack into two pixels. |
| 154 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 155 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 156 | { |
| 157 | q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 158 | if (q == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 159 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 160 | for (x=0; x < (ssize_t) (image->columns >> 1); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 161 | { |
| 162 | u=(unsigned char) ReadBlobByte(image); |
| 163 | y1=(unsigned char) ReadBlobByte(image); |
| 164 | v=(unsigned char) ReadBlobByte(image); |
| 165 | y2=(unsigned char) ReadBlobByte(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 166 | SetPixelRed(image,ScaleCharToQuantum(y1),q); |
| 167 | SetPixelGreen(image,ScaleCharToQuantum(u),q); |
| 168 | SetPixelBlue(image,ScaleCharToQuantum(v),q); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 169 | q+=GetPixelChannels(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 170 | SetPixelRed(image,ScaleCharToQuantum(y2),q); |
| 171 | SetPixelGreen(image,ScaleCharToQuantum(u),q); |
| 172 | SetPixelBlue(image,ScaleCharToQuantum(v),q); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 173 | q+=GetPixelChannels(image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 174 | } |
| 175 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 176 | break; |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 177 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 178 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 179 | if (status == MagickFalse) |
| 180 | break; |
| 181 | } |
cristy | e2c4f18 | 2012-05-12 14:11:53 +0000 | [diff] [blame] | 182 | SetImageColorspace(image,YCbCrColorspace,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 183 | if (EOFBlob(image) != MagickFalse) |
| 184 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 185 | image->filename); |
| 186 | (void) CloseBlob(image); |
| 187 | return(GetFirstImageInList(image)); |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 192 | % % |
| 193 | % % |
| 194 | % % |
| 195 | % R e g i s t e r U Y V Y I m a g e % |
| 196 | % % |
| 197 | % % |
| 198 | % % |
| 199 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 200 | % |
| 201 | % RegisterUYVYImage() adds attributes for the UYVY image format to |
| 202 | % the list of supported formats. The attributes include the image format |
| 203 | % tag, a method to read and/or write the format, whether the format |
| 204 | % supports the saving of more than one frame to the same file or blob, |
| 205 | % whether the format supports native in-memory I/O, and a brief |
| 206 | % description of the format. |
| 207 | % |
| 208 | % The format of the RegisterUYVYImage method is: |
| 209 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 210 | % size_t RegisterUYVYImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 211 | % |
| 212 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 213 | ModuleExport size_t RegisterUYVYImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 214 | { |
| 215 | MagickInfo |
| 216 | *entry; |
| 217 | |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 218 | entry=AcquireMagickInfo("UYVY","PAL","16bit/pixel interleaved YUV"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 219 | entry->decoder=(DecodeImageHandler *) ReadUYVYImage; |
| 220 | entry->encoder=(EncodeImageHandler *) WriteUYVYImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 221 | entry->flags^=CoderAdjoinFlag; |
| 222 | entry->flags|=CoderRawSupportFlag; |
| 223 | entry->flags|=CoderEndianSupportFlag; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 224 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 225 | entry=AcquireMagickInfo("UYVY","UYVY","16bit/pixel interleaved YUV"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 226 | entry->decoder=(DecodeImageHandler *) ReadUYVYImage; |
| 227 | entry->encoder=(EncodeImageHandler *) WriteUYVYImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 228 | entry->flags^=CoderAdjoinFlag; |
| 229 | entry->flags|=CoderRawSupportFlag; |
| 230 | entry->flags|=CoderEndianSupportFlag; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 231 | (void) RegisterMagickInfo(entry); |
| 232 | return(MagickImageCoderSignature); |
| 233 | } |
| 234 | |
| 235 | /* |
| 236 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 237 | % % |
| 238 | % % |
| 239 | % % |
| 240 | % U n r e g i s t e r U Y V Y I m a g e % |
| 241 | % % |
| 242 | % % |
| 243 | % % |
| 244 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 245 | % |
| 246 | % UnregisterUYVYImage() removes format registrations made by the |
| 247 | % UYVY module from the list of supported formats. |
| 248 | % |
| 249 | % The format of the UnregisterUYVYImage method is: |
| 250 | % |
| 251 | % UnregisterUYVYImage(void) |
| 252 | % |
| 253 | */ |
| 254 | ModuleExport void UnregisterUYVYImage(void) |
| 255 | { |
| 256 | (void) UnregisterMagickInfo("PAL"); |
| 257 | (void) UnregisterMagickInfo("UYVY"); |
| 258 | } |
| 259 | |
| 260 | /* |
| 261 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 262 | % % |
| 263 | % % |
| 264 | % % |
| 265 | % W r i t e U Y V Y I m a g e % |
| 266 | % % |
| 267 | % % |
| 268 | % % |
| 269 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 270 | % |
| 271 | % WriteUYVYImage() writes an image to a file in the digital UYVY |
| 272 | % format. This format, used by AccomWSD, is not dramatically higher quality |
| 273 | % than the 12bit/pixel YUV format, but has better locality. |
| 274 | % |
| 275 | % The format of the WriteUYVYImage method is: |
| 276 | % |
| 277 | % MagickBooleanType WriteUYVYImage(const ImageInfo *image_info, |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 278 | % Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 279 | % |
| 280 | % A description of each parameter follows. |
| 281 | % |
| 282 | % o image_info: the image info. |
| 283 | % |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 284 | % o image: The image. Implicit assumption: number of columns is even. |
| 285 | % |
| 286 | % o exception: return any errors or warnings in this structure. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 287 | % |
| 288 | */ |
| 289 | static MagickBooleanType WriteUYVYImage(const ImageInfo *image_info, |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 290 | Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 291 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 292 | PixelInfo |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 293 | pixel; |
| 294 | |
| 295 | Image |
| 296 | *uyvy_image; |
| 297 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 298 | MagickBooleanType |
| 299 | full, |
| 300 | status; |
| 301 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 302 | const Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 303 | *p; |
| 304 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 305 | ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 306 | x; |
| 307 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 308 | ssize_t |
| 309 | y; |
| 310 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 311 | /* |
| 312 | Open output image file. |
| 313 | */ |
| 314 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 315 | assert(image_info->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 316 | assert(image != (Image *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 317 | assert(image->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 318 | if (image->debug != MagickFalse) |
| 319 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 320 | if ((image->columns % 2) != 0) |
| 321 | image->columns++; |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 322 | assert(exception != (ExceptionInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 323 | assert(exception->signature == MagickCoreSignature); |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 324 | status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 325 | if (status == MagickFalse) |
| 326 | return(status); |
| 327 | /* |
| 328 | Accumulate two pixels, then output. |
| 329 | */ |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 330 | uyvy_image=CloneImage(image,0,0,MagickTrue,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 331 | if (uyvy_image == (Image *) NULL) |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 332 | return(MagickFalse); |
cristy | e941a75 | 2011-10-15 01:52:48 +0000 | [diff] [blame] | 333 | (void) TransformImageColorspace(uyvy_image,YCbCrColorspace,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 334 | full=MagickFalse; |
Cristy | 81bfff2 | 2018-03-10 07:58:31 -0500 | [diff] [blame] | 335 | (void) memset(&pixel,0,sizeof(PixelInfo)); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 336 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 337 | { |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 338 | p=GetVirtualPixels(uyvy_image,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 339 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 340 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 341 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 342 | { |
| 343 | if (full != MagickFalse) |
| 344 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 345 | pixel.green=(pixel.green+GetPixelGreen(uyvy_image,p))/2; |
| 346 | pixel.blue=(pixel.blue+GetPixelBlue(uyvy_image,p))/2; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 347 | (void) WriteBlobByte(image,ScaleQuantumToChar((Quantum) pixel.green)); |
| 348 | (void) WriteBlobByte(image,ScaleQuantumToChar((Quantum) pixel.red)); |
| 349 | (void) WriteBlobByte(image,ScaleQuantumToChar((Quantum) pixel.blue)); |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 350 | (void) WriteBlobByte(image,ScaleQuantumToChar( |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 351 | GetPixelRed(uyvy_image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 352 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 353 | pixel.red=(double) GetPixelRed(uyvy_image,p); |
| 354 | pixel.green=(double) GetPixelGreen(uyvy_image,p); |
| 355 | pixel.blue=(double) GetPixelBlue(uyvy_image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 356 | full=full == MagickFalse ? MagickTrue : MagickFalse; |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 357 | p+=GetPixelChannels(uyvy_image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 358 | } |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 359 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 360 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 361 | if (status == MagickFalse) |
| 362 | break; |
| 363 | } |
| 364 | uyvy_image=DestroyImage(uyvy_image); |
| 365 | (void) CloseBlob(image); |
| 366 | return(MagickTrue); |
| 367 | } |