2021-11-26 06:59:02 +03:00
|
|
|
|
/**
|
|
|
|
|
* @brief libtoaru_jpeg: Decode simple JPEGs.
|
|
|
|
|
*
|
|
|
|
|
* @copyright
|
2018-12-05 07:00:36 +03:00
|
|
|
|
* This file is part of ToaruOS and is released under the terms
|
|
|
|
|
* of the NCSA / University of Illinois License - see LICENSE.md
|
|
|
|
|
* Copyright (C) 2018 K. Lange
|
|
|
|
|
*
|
2018-12-05 07:05:55 +03:00
|
|
|
|
* Adapted from Raul Aguaviva's Python "micro JPEG visualizer":
|
|
|
|
|
*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2017 Raul Aguaviva
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*
|
2018-12-05 07:00:36 +03:00
|
|
|
|
*/
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
|
|
#include <toaru/graphics.h>
|
|
|
|
|
|
2022-01-23 04:36:46 +03:00
|
|
|
|
#if !defined(NO_SSE) && defined(__x86_64__)
|
2018-12-20 15:07:35 +03:00
|
|
|
|
#include <xmmintrin.h>
|
|
|
|
|
#include <emmintrin.h>
|
2019-03-19 04:10:55 +03:00
|
|
|
|
#endif
|
2018-12-20 15:07:35 +03:00
|
|
|
|
|
2018-12-05 07:01:59 +03:00
|
|
|
|
#if 0
|
2018-12-05 07:00:36 +03:00
|
|
|
|
#include <toaru/trace.h>
|
|
|
|
|
#define TRACE_APP_NAME "jpeg"
|
|
|
|
|
#else
|
|
|
|
|
#define TRACE(...)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static sprite_t * sprite = NULL;
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Byte swap short (because JPEG uses big-endian values) */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static void swap16(uint16_t * val) {
|
|
|
|
|
char * a = (char *)val;
|
|
|
|
|
char b = a[0];
|
|
|
|
|
a[0] = a[1];
|
|
|
|
|
a[1] = b;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* JPEG compontent zig-zag ordering */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static int zigzag[] = {
|
|
|
|
|
0, 1, 8, 16, 9, 2, 3, 10,
|
|
|
|
|
17, 24, 32, 25, 18, 11, 4, 5,
|
|
|
|
|
12, 19, 26, 33, 40, 48, 41, 34,
|
|
|
|
|
27, 20, 13, 6, 7, 14, 21, 28,
|
|
|
|
|
35, 42, 49, 56, 57, 50, 43, 36,
|
|
|
|
|
29, 22, 15, 23, 30, 37, 44, 51,
|
|
|
|
|
58, 59, 52, 45, 38, 31, 39, 46,
|
|
|
|
|
53, 60, 61, 54, 47, 55, 62, 63
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static uint8_t quant_mapping[3] = {0};
|
|
|
|
|
static uint8_t quant[8][64];
|
|
|
|
|
|
|
|
|
|
static int clamp(int col) {
|
|
|
|
|
if (col > 255) return 255;
|
|
|
|
|
if (col < 0) return 0;
|
|
|
|
|
return col;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* YCbCr to RGB conversion */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static void color_conversion(
|
2018-12-05 14:00:29 +03:00
|
|
|
|
float Y, float Cb, float Cr,
|
2018-12-05 07:00:36 +03:00
|
|
|
|
int *R, int *G, int *B
|
|
|
|
|
) {
|
|
|
|
|
float r = (Cr*(2.0-2.0*0.299) + Y);
|
|
|
|
|
float b = (Cb*(2.0-2.0*0.114) + Y);
|
|
|
|
|
float g = (Y - 0.144 * b - 0.229 * r) / 0.587;
|
|
|
|
|
|
|
|
|
|
*R = clamp(r + 128);
|
|
|
|
|
*G = clamp(g + 128);
|
|
|
|
|
*B = clamp(b + 128);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int xy_to_lin(int x, int y) {
|
|
|
|
|
return x + y * 8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct huffman_table {
|
|
|
|
|
uint8_t lengths[16];
|
2018-12-05 12:12:11 +03:00
|
|
|
|
uint8_t elements[256];
|
2018-12-05 07:00:36 +03:00
|
|
|
|
} huffman_tables[256] = {0};
|
|
|
|
|
|
|
|
|
|
struct stream {
|
2018-12-05 12:12:11 +03:00
|
|
|
|
FILE * file;
|
|
|
|
|
uint8_t byte;
|
|
|
|
|
int have;
|
2018-12-05 07:00:36 +03:00
|
|
|
|
int pos;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void define_quant_table(FILE * f, int len) {
|
|
|
|
|
|
|
|
|
|
TRACE("Defining quant table");
|
|
|
|
|
while (len > 0) {
|
|
|
|
|
uint8_t hdr;
|
|
|
|
|
fread(&hdr, 1, 1, f);
|
|
|
|
|
fread(&quant[(hdr) & 0xF], 64, 1, f);
|
|
|
|
|
len -= 65;
|
|
|
|
|
}
|
|
|
|
|
TRACE("Done");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void baseline_dct(FILE * f, int len) {
|
|
|
|
|
|
|
|
|
|
struct dct {
|
|
|
|
|
uint8_t hdr;
|
|
|
|
|
uint16_t height;
|
|
|
|
|
uint16_t width;
|
|
|
|
|
uint8_t components;
|
|
|
|
|
} __attribute__((packed)) dct;
|
|
|
|
|
|
|
|
|
|
fread(&dct, sizeof(struct dct), 1, f);
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* Read image dimensions, each as big-endian 16-bit values */
|
2021-05-31 04:47:02 +03:00
|
|
|
|
uint16_t h = dct.height;
|
|
|
|
|
uint16_t w = dct.width;
|
|
|
|
|
swap16(&h);
|
|
|
|
|
swap16(&w);
|
|
|
|
|
dct.height = h;
|
|
|
|
|
dct.width = w;
|
2018-12-05 07:00:36 +03:00
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* We read 7 bytes */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
len -= sizeof(struct dct);
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Image dimensions are %d×%d", dct.width, dct.height);
|
|
|
|
|
sprite->width = dct.width;
|
|
|
|
|
sprite->height = dct.height;
|
|
|
|
|
sprite->bitmap = malloc(sizeof(uint32_t) * sprite->width * sprite->height);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
sprite->masks = NULL;
|
|
|
|
|
sprite->alpha = 0;
|
|
|
|
|
sprite->blank = 0;
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Loading quantization mappings...");
|
2018-12-05 07:00:36 +03:00
|
|
|
|
for (int i = 0; i < dct.components; ++i) {
|
|
|
|
|
/* Quant mapping */
|
|
|
|
|
struct {
|
|
|
|
|
uint8_t id;
|
|
|
|
|
uint8_t samp;
|
|
|
|
|
uint8_t qtb_id;
|
|
|
|
|
} __attribute__((packed)) tmp;
|
|
|
|
|
|
|
|
|
|
fread(&tmp, sizeof(tmp), 1, f);
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* There should only be three of these for the images we support. */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
if (i > 3) {
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quant_mapping[i] = tmp.qtb_id;
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* 3 bytes were read */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
len -= 3;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Skip whatever else might be in this section */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
if (len > 0) {
|
|
|
|
|
fseek(f, len, SEEK_CUR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void define_huffman_table(FILE * f, int len) {
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Loading Huffman tables...");
|
2018-12-05 07:00:36 +03:00
|
|
|
|
while (len > 0) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Read header ID */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
uint8_t hdr;
|
|
|
|
|
fread(&hdr, 1, 1, f);
|
|
|
|
|
len--;
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Read length table */
|
|
|
|
|
fread(huffman_tables[hdr].lengths, 16, 1, f);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
len -= 16;
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Read Huffman table entries */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
int o = 0;
|
|
|
|
|
for (int i = 0; i < 16; ++i) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
int l = huffman_tables[hdr].lengths[i];
|
2018-12-05 12:12:11 +03:00
|
|
|
|
fread(&huffman_tables[hdr].elements[o], l, 1, f);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
o += l;
|
|
|
|
|
len -= l;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Skip rest of section */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
if (len > 0) {
|
|
|
|
|
fseek(f, len, SEEK_CUR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct idct {
|
2018-12-20 15:07:35 +03:00
|
|
|
|
float base[64];
|
2018-12-05 07:00:36 +03:00
|
|
|
|
};
|
|
|
|
|
|
2018-12-20 12:54:13 +03:00
|
|
|
|
/**
|
|
|
|
|
* norm_coeff[0] = 0.35355339059
|
|
|
|
|
* norm_coeff[1] = 0.5
|
|
|
|
|
*/
|
2018-12-20 15:07:35 +03:00
|
|
|
|
static float cosines[8][8] = {
|
2018-12-20 12:54:13 +03:00
|
|
|
|
{ 0.35355339059,0.35355339059,0.35355339059,0.35355339059,0.35355339059,0.35355339059,0.35355339059,0.35355339059 },
|
|
|
|
|
{ 0.490392640202,0.415734806151,0.27778511651,0.0975451610081,-0.0975451610081,-0.27778511651,-0.415734806151,-0.490392640202 },
|
|
|
|
|
{ 0.461939766256,0.191341716183,-0.191341716183,-0.461939766256,-0.461939766256,-0.191341716183,0.191341716183,0.461939766256 },
|
|
|
|
|
{ 0.415734806151,-0.0975451610081,-0.490392640202,-0.27778511651,0.27778511651,0.490392640202,0.0975451610081,-0.415734806151 },
|
|
|
|
|
{ 0.353553390593,-0.353553390593,-0.353553390593,0.353553390593,0.353553390593,-0.353553390593,-0.353553390593,0.353553390593 },
|
|
|
|
|
{ 0.27778511651,-0.490392640202,0.0975451610081,0.415734806151,-0.415734806151,-0.0975451610081,0.490392640202,-0.27778511651 },
|
|
|
|
|
{ 0.191341716183,-0.461939766256,0.461939766256,-0.191341716183,-0.191341716183,0.461939766256,-0.461939766256,0.191341716183 },
|
|
|
|
|
{ 0.0975451610081,-0.27778511651,0.415734806151,-0.490392640202,0.490392640202,-0.415734806151,0.27778511651,-0.0975451610081 },
|
2018-12-18 13:33:21 +03:00
|
|
|
|
};
|
|
|
|
|
|
2018-12-20 15:07:35 +03:00
|
|
|
|
static float premul[8][8][8][8]= {{{{0}}}};
|
2018-12-20 13:01:49 +03:00
|
|
|
|
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static void add_idc(struct idct * self, int n, int m, int coeff) {
|
2022-01-23 04:36:46 +03:00
|
|
|
|
#if defined(NO_SSE) || !defined(__x86_64__)
|
2019-03-19 04:10:55 +03:00
|
|
|
|
for (int y = 0; y < 8; ++y) {
|
|
|
|
|
for (int x = 0; x < 8; ++x) {
|
|
|
|
|
self->base[xy_to_lin(x, y)] += premul[n][m][y][x] * coeff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
2018-12-20 15:07:35 +03:00
|
|
|
|
__m128 c = _mm_set_ps(coeff,coeff,coeff,coeff);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
for (int y = 0; y < 8; ++y) {
|
2018-12-20 15:07:35 +03:00
|
|
|
|
__m128 a, b;
|
|
|
|
|
/* base[y][x] = base[y][x] + premul[n][m][y][x] * coeff */
|
|
|
|
|
|
|
|
|
|
/* x = 0..3 */
|
|
|
|
|
a = _mm_load_ps(&premul[n][m][y][0]);
|
|
|
|
|
a = _mm_mul_ps(a,c);
|
|
|
|
|
b = _mm_load_ps(&self->base[xy_to_lin(0,y)]);
|
|
|
|
|
a = _mm_add_ps(a,b);
|
|
|
|
|
_mm_store_ps(&self->base[xy_to_lin(0,y)], a);
|
|
|
|
|
|
|
|
|
|
/* x = 4..7 */
|
|
|
|
|
a = _mm_load_ps(&premul[n][m][y][4]);
|
|
|
|
|
a = _mm_mul_ps(a,c);
|
|
|
|
|
b = _mm_load_ps(&self->base[xy_to_lin(4,y)]);
|
|
|
|
|
a = _mm_add_ps(a,b);
|
|
|
|
|
_mm_store_ps(&self->base[xy_to_lin(4,y)], a);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
}
|
2019-03-19 04:10:55 +03:00
|
|
|
|
#endif
|
2018-12-05 07:00:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void add_zigzag(struct idct * self, int zi, int coeff) {
|
|
|
|
|
int i = zigzag[zi];
|
|
|
|
|
int n = i & 0x7;
|
|
|
|
|
int m = i >> 3;
|
|
|
|
|
add_idc(self, n, m, coeff);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Read a bit from the stream */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static int get_bit(struct stream * st) {
|
2018-12-05 12:12:11 +03:00
|
|
|
|
while ((st->pos >> 3) >= st->have) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* We have finished using the current byte and need to read another one */
|
2018-12-05 12:12:11 +03:00
|
|
|
|
int t = fgetc(st->file);
|
|
|
|
|
if (t < 0) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* EOF */
|
2018-12-05 12:12:11 +03:00
|
|
|
|
st->byte = 0;
|
|
|
|
|
} else {
|
|
|
|
|
st->byte = t;
|
|
|
|
|
}
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
2018-12-05 12:12:11 +03:00
|
|
|
|
if (st->byte == 0xFF) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/*
|
|
|
|
|
* If we see 0xFF, it's followed by a 0x00
|
|
|
|
|
* that should be skipped.
|
|
|
|
|
*/
|
2018-12-05 12:12:11 +03:00
|
|
|
|
int tmp = fgetc(st->file);
|
|
|
|
|
if (tmp != 0) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/*
|
|
|
|
|
* If it's *not*, we reached the end of the file - but
|
|
|
|
|
* this shouldn't happen.
|
|
|
|
|
*/
|
2018-12-05 12:12:11 +03:00
|
|
|
|
st->byte = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* We've seen a new byte */
|
2018-12-05 12:12:11 +03:00
|
|
|
|
st->have++;
|
|
|
|
|
}
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* Extract appropriate bit from this byte */
|
2018-12-05 12:12:11 +03:00
|
|
|
|
uint8_t b = st->byte;
|
2018-12-05 07:00:36 +03:00
|
|
|
|
int s = 7 - (st->pos & 0x7);
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* We move forward one position in the bit stream */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
st->pos += 1;
|
|
|
|
|
return (b >> s) & 1;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Advance forward and get the n'th next bit */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static int get_bitn(struct stream * st, int l) {
|
|
|
|
|
int val = 0;
|
|
|
|
|
for (int i = 0; i < l; ++i) {
|
|
|
|
|
val = val * 2 + get_bit(st);
|
|
|
|
|
}
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/*
|
|
|
|
|
* Read a Huffman code by reading bits and using
|
|
|
|
|
* the Huffman table.
|
|
|
|
|
*/
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static int get_code(struct huffman_table * table, struct stream * st) {
|
|
|
|
|
int val = 0;
|
|
|
|
|
int off = 0;
|
|
|
|
|
int ini = 0;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 16; ++i) {
|
|
|
|
|
val = val * 2 + get_bit(st);
|
|
|
|
|
if (table->lengths[i] > 0) {
|
|
|
|
|
if (val - ini < table->lengths[i]) {
|
|
|
|
|
return table->elements[off + val - ini];
|
|
|
|
|
}
|
|
|
|
|
ini = ini + table->lengths[i];
|
|
|
|
|
off += table->lengths[i];
|
|
|
|
|
}
|
|
|
|
|
ini *= 2;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Invalid */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Decode Huffman codes to values */
|
|
|
|
|
static int decode(int code, int bits) {
|
|
|
|
|
int l = 1L << (code - 1);
|
|
|
|
|
if (bits >= l) {
|
|
|
|
|
return bits;
|
|
|
|
|
} else {
|
|
|
|
|
return bits - (2 * l - 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Build IDCT matrix */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static struct idct * build_matrix(struct idct * i, struct stream * st, int idx, uint8_t * quant, int oldcoeff, int * outcoeff) {
|
|
|
|
|
memset(i, 0, sizeof(struct idct));
|
|
|
|
|
|
|
|
|
|
int code = get_code(&huffman_tables[idx], st);
|
|
|
|
|
int bits = get_bitn(st, code);
|
|
|
|
|
int dccoeff = decode(code, bits) + oldcoeff;
|
|
|
|
|
|
|
|
|
|
add_zigzag(i, 0, dccoeff * quant[0]);
|
|
|
|
|
int l = 1;
|
|
|
|
|
|
|
|
|
|
while (l < 64) {
|
|
|
|
|
code = get_code(&huffman_tables[16+idx], st);
|
|
|
|
|
if (code == 0) break;
|
|
|
|
|
if (code > 15) {
|
|
|
|
|
l += (code >> 4);
|
|
|
|
|
code = code & 0xF;
|
|
|
|
|
}
|
|
|
|
|
bits = get_bitn(st, code);
|
|
|
|
|
int coeff = decode(code, bits);
|
|
|
|
|
add_zigzag(i, l, coeff * quant[l]);
|
|
|
|
|
l += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*outcoeff = dccoeff;
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Set pixel in sprite buffer with bounds checking */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static void set_pixel(int x, int y, uint32_t color) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
if ((x < sprite->width) && (y < sprite->height)) {
|
2018-12-05 07:00:36 +03:00
|
|
|
|
SPRITE(sprite,x,y) = color;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Concvert YCbCr values to RGB pixels */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
static void draw_matrix(int x, int y, struct idct * L, struct idct * cb, struct idct * cr) {
|
|
|
|
|
for (int yy = 0; yy < 8; ++yy) {
|
|
|
|
|
for (int xx = 0; xx < 8; ++xx) {
|
|
|
|
|
int o = xy_to_lin(xx,yy);
|
|
|
|
|
int r, g, b;
|
|
|
|
|
color_conversion(L->base[o], cb->base[o], cr->base[o], &r, &g, &b);
|
|
|
|
|
uint32_t c = 0xFF000000 | (r << 16) | (g << 8) | b;
|
|
|
|
|
set_pixel((x * 8 + xx), (y * 8 + yy), c);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void start_of_scan(FILE * f, int len) {
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Reading image data");
|
2018-12-05 07:00:36 +03:00
|
|
|
|
|
|
|
|
|
/* Skip header */
|
|
|
|
|
fseek(f, len, SEEK_CUR);
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Initialize bit stream */
|
2018-12-05 12:12:11 +03:00
|
|
|
|
struct stream _st = {0};
|
|
|
|
|
_st.file = f;
|
|
|
|
|
struct stream * st = &_st;
|
2018-12-05 07:00:36 +03:00
|
|
|
|
|
|
|
|
|
int old_lum = 0;
|
|
|
|
|
int old_crd = 0;
|
|
|
|
|
int old_cbd = 0;
|
2019-01-02 13:48:02 +03:00
|
|
|
|
for (int y = 0; y < sprite->height / 8 + !!(sprite->height & 0x7); ++y) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Star row %d", y );
|
2019-01-02 13:48:02 +03:00
|
|
|
|
for (int x = 0; x < sprite->width / 8 + !!(sprite->width & 0x7); ++x) {
|
2018-12-05 07:00:36 +03:00
|
|
|
|
if (y >= 134) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Start col %d", x);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
}
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* Build matrices */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
struct idct matL, matCr, matCb;
|
|
|
|
|
build_matrix(&matL, st, 0, quant[quant_mapping[0]], old_lum, &old_lum);
|
2018-12-05 14:00:29 +03:00
|
|
|
|
build_matrix(&matCb, st, 1, quant[quant_mapping[1]], old_cbd, &old_cbd);
|
|
|
|
|
build_matrix(&matCr, st, 1, quant[quant_mapping[2]], old_crd, &old_crd);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
|
|
|
|
|
if (y >= 134) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Draw col %d", x);
|
2018-12-05 07:00:36 +03:00
|
|
|
|
}
|
|
|
|
|
draw_matrix(x, y, &matL, &matCb, &matCr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
TRACE("Done.");
|
2018-12-05 07:00:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int load_sprite_jpg(sprite_t * tsprite, char * filename) {
|
|
|
|
|
FILE * f = fopen(filename, "r");
|
|
|
|
|
if (!f) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sprite = tsprite;
|
|
|
|
|
|
|
|
|
|
memset(huffman_tables, 0, sizeof(huffman_tables));
|
|
|
|
|
|
2018-12-20 13:01:49 +03:00
|
|
|
|
if (premul[0][0][0][0] == 0.0) {
|
|
|
|
|
for (int n = 0; n < 8; ++n) {
|
|
|
|
|
for (int m = 0; m < 8; ++m) {
|
|
|
|
|
for (int y = 0; y < 8; ++y) {
|
|
|
|
|
for (int x = 0; x < 8; ++x) {
|
2018-12-20 15:07:35 +03:00
|
|
|
|
premul[n][m][y][x] = cosines[n][x] * cosines[m][y];
|
2018-12-20 13:01:49 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 07:00:36 +03:00
|
|
|
|
while (1) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
|
|
|
|
|
/* Read a header */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
uint16_t hdr;
|
|
|
|
|
int r = fread(&hdr, 2, 1, f);
|
|
|
|
|
if (r <= 0) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* EOF */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* These headers are stored big-endian */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
swap16(&hdr);
|
|
|
|
|
|
|
|
|
|
if (hdr == 0xffd8) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* No data */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
continue;
|
|
|
|
|
} else if (hdr == 0xffd9) {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* End of file */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
break;
|
|
|
|
|
} else {
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Regular sections with data start with a length */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
uint16_t len;
|
|
|
|
|
fread(&len, 2, 1, f);
|
|
|
|
|
swap16(&len);
|
|
|
|
|
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* Subtract two because the length includes itself */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
len -= 2;
|
|
|
|
|
|
|
|
|
|
if (hdr == 0xffdb) {
|
|
|
|
|
define_quant_table(f, len);
|
|
|
|
|
} else if (hdr == 0xffc0) {
|
|
|
|
|
baseline_dct(f, len);
|
|
|
|
|
} else if (hdr == 0xffc4) {
|
|
|
|
|
define_huffman_table(f, len);
|
|
|
|
|
} else if (hdr == 0xffda) {
|
|
|
|
|
start_of_scan(f, len);
|
2018-12-05 14:00:29 +03:00
|
|
|
|
/* End immediately after reading the data */
|
2018-12-05 07:00:36 +03:00
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
TRACE("Unknown header\n");
|
|
|
|
|
fseek(f, len, SEEK_CUR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-05 14:29:50 +03:00
|
|
|
|
fclose(f);
|
|
|
|
|
|
2018-12-05 07:00:36 +03:00
|
|
|
|
return 0;
|
|
|
|
|
}
|