Since mozjpeg is now backward ABI-compatible with libjpeg[-turbo], it is now possible to temporarily load mozjpeg into a binary application and cause that application to generate uber-compressed JPEGs (at the expense of an extreme performance loss, of course.) For instance, someone could do LD_LIBRARY_PATH=/opt/mozjpeg/lib convert blah_blah_blah to make ImageMagick use mozjpeg instead of the system's pre-installed JPEG library (libjpeg-turbo, in most cases.) However, this only makes sense if mozjpeg is actually producing different behavior by default than libjpeg-turbo. Currently it isn't. Currently it requires the application to set JBOOLEAN_USE_MOZ_DEFAULTS to TRUE in order to enable the mozjpeg-specific behavior, but of course applications that were built to use libjpeg[-turbo] won't do that. Thus, this patch sets use_moz_defaults to TRUE by default, requiring an application to explicitly set it to FALSE in order to revert to the libjpeg[-turbo] behavior (makes sense, since the only applications that would need to revert to the libjpeg[-turbo] behavior would be mozjpeg-aware applications.) Note that we discussed the possibility of adding a function (jpeg_revert_defaults()), which would act the same as jpeg_set_defaults() does in libjpeg[-turbo]. This is a good solution for implementing the -revert switch in cjpeg, but unfortunately it doesn't work for jpegtran. The reason is that jpeg_set_defaults() is called within the body of jpeg_copy_critical_parameters(), which is part of the API. So yet again, if mozjpeg were loaded into a non-mozjpeg-aware application at run time, it would be desirable for jpeg_copy_critical_parameters() to set the parameters to mozjpeg defaults. That means that, in order to implement the -revert switch in jpegtran, it would be necessary to introduce a new function (jpeg_revert_critical_parameters(), perhaps). It seems cleaner to just keep using the JBOOLEAN_USE_MOZ_DEFAULTS parameter to control the behavior of jpeg_set_defaults(), even though this represents a minor abuse of the libjpeg API (jpeg_set_defaults() is technically supposed to set all of the parameters to defaults, irrespective of any previous state. However, as long as we document that JBOOLEAN_USE_MOZ_DEFAULTS works differently, then it should be OK.)
282 lines
8.2 KiB
C
282 lines
8.2 KiB
C
/*
|
|
* Written by Josh Aas and Tim Terriberry
|
|
* Copyright (c) 2013, Mozilla Corporation
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the Mozilla Corporation nor the names of its
|
|
* contributors may be used to endorse or promote products derived from this
|
|
* software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/* Expects 4:2:0 YCbCr */
|
|
|
|
/* gcc -std=c99 yuvjpeg.c -I/opt/local/include/ -L/opt/local/lib/ -ljpeg -o yuvjpeg */
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
#include <sys/stat.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "jpeglib.h"
|
|
|
|
void extend_edge(JSAMPLE *image, int width, int height, unsigned char *yuv,
|
|
int luma_width, int luma_height, int chroma_width, int chroma_height) {
|
|
int x;
|
|
int y;
|
|
|
|
for (y = 0; y < luma_height; y++) {
|
|
for (x = 0; x < luma_width; x++) {
|
|
image[width*y + x] = yuv[luma_width*y + x];
|
|
}
|
|
}
|
|
for (y = 0; y < chroma_height; y++) {
|
|
for (x = 0; x < chroma_width; x++) {
|
|
image[width*height + (width/2)*y + x] =
|
|
yuv[luma_width*luma_height + chroma_width*y + x];
|
|
image[width*height + (width/2)*((height/2) + y) + x] =
|
|
yuv[luma_width*luma_height + chroma_width*(chroma_height + y) + x];
|
|
}
|
|
}
|
|
|
|
/* Perform right edge extension. */
|
|
for (y = 0; y < luma_height; y++) {
|
|
for (x = luma_width; x < width; x++) {
|
|
image[width*y + x] = image[width*y + (x - 1)];
|
|
}
|
|
}
|
|
for (y = 0; y < chroma_height; y++) {
|
|
for (x = chroma_width; x < width/2; x++) {
|
|
image[width*height + (width/2)*y + x] =
|
|
image[width*height + (width/2)*y + (x - 1)];
|
|
image[width*height + (width/2)*((height/2) + y) + x] =
|
|
image[width*height + (width/2)*((height/2) + y) + (x - 1)];
|
|
}
|
|
}
|
|
|
|
/* Perform bottom edge extension. */
|
|
for (x = 0; x < width; x++) {
|
|
for (y = luma_height; y < height; y++) {
|
|
image[width*y + x] = image[width*(y - 1) + x];
|
|
}
|
|
}
|
|
for (x = 0; x < width/2; x++) {
|
|
for (y = chroma_height; y < height/2; y++) {
|
|
image[width*height + (width/2)*y + x] =
|
|
image[width*height + (width/2)*(y - 1) + x];
|
|
image[width*height + (width/2)*((height/2) + y) + x] =
|
|
image[width*height + (width/2)*((height/2) + (y - 1)) + x];
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
long quality;
|
|
const char *size;
|
|
char *x;
|
|
int luma_width;
|
|
int luma_height;
|
|
int chroma_width;
|
|
int chroma_height;
|
|
int frame_width;
|
|
int frame_height;
|
|
const char *yuv_path;
|
|
const char *jpg_path;
|
|
FILE *yuv_fd;
|
|
size_t yuv_size;
|
|
unsigned char *yuv_buffer;
|
|
JSAMPLE *image_buffer;
|
|
struct jpeg_compress_struct cinfo;
|
|
struct jpeg_error_mgr jerr;
|
|
FILE *jpg_fd;
|
|
JSAMPROW yrow_pointer[16];
|
|
JSAMPROW cbrow_pointer[8];
|
|
JSAMPROW crrow_pointer[8];
|
|
JSAMPROW *plane_pointer[3];
|
|
int y;
|
|
|
|
if (argc != 5) {
|
|
fprintf(stderr, "Required arguments:\n");
|
|
fprintf(stderr, "1. JPEG quality value, 0-100\n");
|
|
fprintf(stderr, "2. Image size (e.g. '512x512')\n");
|
|
fprintf(stderr, "3. Path to YUV input file\n");
|
|
fprintf(stderr, "4. Path to JPG output file\n");
|
|
return 1;
|
|
}
|
|
|
|
errno = 0;
|
|
|
|
quality = strtol(argv[1], NULL, 10);
|
|
if (errno != 0 || quality < 0 || quality > 100) {
|
|
fprintf(stderr, "Invalid JPEG quality value!\n");
|
|
return 1;
|
|
}
|
|
|
|
size = argv[2];
|
|
x = strchr(size, 'x');
|
|
if (!x && x != size && x != (x + strlen(x) - 1)) {
|
|
fprintf(stderr, "Invalid image size input!\n");
|
|
return 1;
|
|
}
|
|
luma_width = (int)strtol(size, NULL, 10);
|
|
if (errno != 0) {
|
|
fprintf(stderr, "Invalid image size input!\n");
|
|
return 1;
|
|
}
|
|
luma_height = (int)strtol(x + 1, NULL, 10);
|
|
if (errno != 0) {
|
|
fprintf(stderr, "Invalid image size input!\n");
|
|
return 1;
|
|
}
|
|
if (luma_width <= 0 || luma_height <= 0) {
|
|
fprintf(stderr, "Invalid image size input!\n");
|
|
return 1;
|
|
}
|
|
|
|
chroma_width = (luma_width + 1) >> 1;
|
|
chroma_height = (luma_height + 1) >> 1;
|
|
|
|
/* Will check these for validity when opening via 'fopen'. */
|
|
yuv_path = argv[3];
|
|
jpg_path = argv[4];
|
|
|
|
yuv_fd = fopen(yuv_path, "r");
|
|
if (!yuv_fd) {
|
|
fprintf(stderr, "Invalid path to YUV file!\n");
|
|
return 1;
|
|
}
|
|
|
|
fseek(yuv_fd, 0, SEEK_END);
|
|
yuv_size = ftell(yuv_fd);
|
|
fseek(yuv_fd, 0, SEEK_SET);
|
|
|
|
/* Check that the file size matches 4:2:0 yuv. */
|
|
if (yuv_size !=
|
|
(size_t)luma_width*luma_height + 2*chroma_width*chroma_height) {
|
|
fprintf(stderr, "Unexpected input format!\n");
|
|
return 1;
|
|
}
|
|
|
|
yuv_buffer = malloc(yuv_size);
|
|
if (!yuv_buffer) {
|
|
fprintf(stderr, "Memory allocation failure!\n");
|
|
return 1;
|
|
}
|
|
|
|
if (fread(yuv_buffer, yuv_size, 1, yuv_fd) != 1) {
|
|
fprintf(stderr, "Error reading yuv file\n");
|
|
};
|
|
|
|
fclose(yuv_fd);
|
|
|
|
frame_width = (luma_width + (16 - 1)) & ~(16 - 1);
|
|
frame_height = (luma_height + (16 - 1)) & ~(16 - 1);
|
|
|
|
image_buffer =
|
|
malloc(frame_width*frame_height + 2*(frame_width/2)*(frame_height/2));
|
|
if (!image_buffer) {
|
|
fprintf(stderr, "Memory allocation failure!\n");
|
|
return 1;
|
|
}
|
|
|
|
extend_edge(image_buffer, frame_width, frame_height,
|
|
yuv_buffer, luma_width, luma_height, chroma_width, chroma_height);
|
|
|
|
free(yuv_buffer);
|
|
|
|
cinfo.err = jpeg_std_error(&jerr);
|
|
jpeg_create_compress(&cinfo);
|
|
|
|
jpg_fd = fopen(jpg_path, "wb");
|
|
if (!jpg_fd) {
|
|
fprintf(stderr, "Invalid path to JPEG file!\n");
|
|
free(image_buffer);
|
|
return 1;
|
|
}
|
|
|
|
jpeg_stdio_dest(&cinfo, jpg_fd);
|
|
|
|
cinfo.image_width = luma_width;
|
|
cinfo.image_height = luma_height;
|
|
cinfo.input_components = 3;
|
|
|
|
cinfo.in_color_space = JCS_YCbCr;
|
|
jpeg_set_defaults(&cinfo);
|
|
|
|
cinfo.raw_data_in = TRUE;
|
|
|
|
cinfo.comp_info[0].h_samp_factor = 2;
|
|
cinfo.comp_info[0].v_samp_factor = 2;
|
|
cinfo.comp_info[0].dc_tbl_no = 0;
|
|
cinfo.comp_info[0].ac_tbl_no = 0;
|
|
cinfo.comp_info[0].quant_tbl_no = 0;
|
|
|
|
cinfo.comp_info[1].h_samp_factor = 1;
|
|
cinfo.comp_info[1].v_samp_factor = 1;
|
|
cinfo.comp_info[1].dc_tbl_no = 1;
|
|
cinfo.comp_info[1].ac_tbl_no = 1;
|
|
cinfo.comp_info[1].quant_tbl_no = 1;
|
|
|
|
cinfo.comp_info[2].h_samp_factor = 1;
|
|
cinfo.comp_info[2].v_samp_factor = 1;
|
|
cinfo.comp_info[2].dc_tbl_no = 1;
|
|
cinfo.comp_info[2].ac_tbl_no = 1;
|
|
cinfo.comp_info[2].quant_tbl_no = 1;
|
|
|
|
jpeg_set_quality(&cinfo, quality, TRUE);
|
|
cinfo.optimize_coding = TRUE;
|
|
|
|
jpeg_start_compress(&cinfo, TRUE);
|
|
|
|
plane_pointer[0] = yrow_pointer;
|
|
plane_pointer[1] = cbrow_pointer;
|
|
plane_pointer[2] = crrow_pointer;
|
|
|
|
while (cinfo.next_scanline < cinfo.image_height) {
|
|
int scanline;
|
|
scanline = cinfo.next_scanline;
|
|
|
|
for (y = 0; y < 16; y++) {
|
|
yrow_pointer[y] = &image_buffer[frame_width*(scanline + y)];
|
|
}
|
|
for (y = 0; y < 8; y++) {
|
|
cbrow_pointer[y] = &image_buffer[frame_width*frame_height +
|
|
(frame_width/2)*((scanline/2) + y)];
|
|
crrow_pointer[y] = &image_buffer[frame_width*frame_height +
|
|
(frame_width/2)*(frame_height/2) + (frame_width/2)*((scanline/2) + y)];
|
|
}
|
|
jpeg_write_raw_data(&cinfo, plane_pointer, 16);
|
|
}
|
|
|
|
jpeg_finish_compress(&cinfo);
|
|
|
|
jpeg_destroy_compress(&cinfo);
|
|
|
|
free(image_buffer);
|
|
|
|
fclose(jpg_fd);
|
|
|
|
return 0;
|
|
}
|