Add facility to read frames in RGB & RGBA format
[imageviewer.git] / rawIOrgb.cpp
blobc88d4d71cd6f620a5cfc6a942df0553a47282913
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 "rawIOrgb.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& RawReaderrgb::read(RawFrame &f)
37 assert(f.chroma == RawFrame::CrRGB);
39 size_t linesRead;
40 size_t lineLen = f.luma.width() * 3;
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, x = 0; x < f.luma.width(); in+=3, x++) {
48 /* RGB */
49 f.r[y][x] = inLine[in + 0];
50 f.g[y][x] = inLine[in + 1];
51 f.b[y][x] = inLine[in + 2];
54 if (linesRead < 1)
55 goto exit;
58 exit:
60 //if (feof (infile))
61 // throw /* some eof/shortread exception */ ;
62 free(inLine);
63 return f;
66 RawFrame& RawReaderrgb::read()
68 throw /* unknown framesize */;
71 void RawWriterrgb::write(const RawFrame& f) const
73 assert(f.chroma == RawFrame::CrRGB);
74 for (int y = 0; y < f.luma.height(); y++)
75 for (int x = 0; x < f.luma.width(); x++) {
76 /* RGB*/
77 fputc(f.r[y][x], outfile);
78 fputc(f.g[y][x], outfile);
79 fputc(f.b[y][x], outfile);