Add facility to read frames in RGB & RGBA format
[imageviewer.git] / rawIOuyvy.cpp
blob01f103b037aba5b07971d2ad64304e61494abca4
1 /* ***** BEGIN LICENSE BLOCK *****
3 * $Id$
5 * The MIT License
7 * Copyright (c) 2008 BBC Research
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
27 * ***** END LICENSE BLOCK ***** */
29 #include <assert.h>
30 #include "rawIOuyvy.h"
32 /* this could be improved by reading a larger chunk and then converting
33 * the endianness suitably. Reading / writing converts the chroma values
34 * to offset binary ycbcr. */
35 RawFrame& RawReaderuyvy::read(RawFrame &f)
37 assert(f.chroma == RawFrame::Cr422);
39 size_t linesRead;
40 size_t lineLen = f.luma.width() * 2;
41 unsigned char *inLine = new unsigned char[lineLen];
43 for (int y = 0; y < f.luma.height(); y++) {
45 linesRead = fread(inLine, lineLen, 1, infile);
47 for (int in = 0, xy = 0, xc = 0; xy < f.luma.width(); in+=4, xy += 2,
48 xc++) {
49 /* Cb Y Cr Y */
50 f.cb[y][xc] = inLine[in+0];
51 f.luma[y][xy] = inLine[in+1];
52 f.cr[y][xc] = inLine[in+2];
53 f.luma[y][xy+1] = inLine[in+3];
56 if (linesRead < 1)
57 goto exit;
60 exit:
62 //if (feof (infile))
63 // throw /* some eof/shortread exception */ ;
64 free(inLine);
65 return f;
68 RawFrame& RawReaderuyvy::read()
70 throw /* unknown framesize */;
73 void RawWriteruyvy::write(const RawFrame& f) const
75 assert(f.chroma == RawFrame::Cr422);
76 for (int y = 0; y < f.luma.height(); y++)
77 for (int xy = 0, xc = 0; xy < f.luma.width(); xy += 2, xc++) {
78 /* Cb Y Cr Y */
79 fputc(f.cb[y][xc], outfile);
80 fputc(f.luma[y][xy], outfile);
81 fputc(f.cr[y][xc], outfile);
82 fputc(f.luma[y][xy+1], outfile);