Add facility to read frames in RGB & RGBA format
[imageviewer.git] / rawIOyyy8.cpp
blobcf7c95d925001566b445bd3051b2b898967e992c
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 "rawIOyyy8.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& RawReaderYYY8::read(RawFrame &f)
37 assert(f.chroma == RawFrame::YOnly);
39 size_t linesRead;
40 size_t lineLen = f.luma.width();
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; xy < f.luma.width(); in++, xy++) {
48 /* Y */
49 f.luma[y][xy] = inLine[in];
52 if (linesRead < 1)
53 goto exit;
56 exit:
58 //if (feof (infile))
59 // throw /* some eof/shortread exception */ ;
61 free(inLine);
62 return f;
65 RawFrame& RawReaderYYY8::read()
67 throw /* unknown framesize */;
70 void RawWriterYYY8::write(const RawFrame& f) const
72 (void)f;