summaryrefslogtreecommitdiffstats
path: root/cmds/stagefright/jpeg.cpp
blob: 7e859c3d586e349d8b007dcc5e88c62977335a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <errno.h>
#include <setjmp.h>
#include <stdio.h>

extern "C" {
#include "jpeglib.h"
}

static inline uint8_t from565to8(uint16_t p, int start, int bits) {
    uint8_t c = (p >> start) & ((1 << bits) - 1);
    return (c << (8 - bits)) | (c >> (bits - (8 - bits)));
}

struct sf_jpeg_error_mgr {
    struct jpeg_error_mgr jerr;
    jmp_buf longjmp_buffer;
};

void sf_jpeg_error_exit(j_common_ptr cinfo) {
    struct sf_jpeg_error_mgr *sf_err = (struct sf_jpeg_error_mgr *)cinfo->err;
    longjmp(sf_err->longjmp_buffer, 0);
}

int writeJpegFile(const char *filename, uint8_t *frame, int width, int height) {
    struct sf_jpeg_error_mgr sf_err;
    struct jpeg_compress_struct cinfo;
    uint8_t row_data[width * 3];
    JSAMPROW row_pointer = row_data;
    FILE *f;

    f = fopen(filename, "w");
    if (!f) {
        return -errno;
    }

    cinfo.err = jpeg_std_error(&sf_err.jerr);
    sf_err.jerr.error_exit = sf_jpeg_error_exit;
    if (setjmp(sf_err.longjmp_buffer)) {
        jpeg_destroy_compress(&cinfo);
        fclose(f);
        return -1;
    }

    jpeg_create_compress(&cinfo);
    jpeg_stdio_dest(&cinfo, f);

    cinfo.image_width = width;
    cinfo.image_height = height;
    cinfo.input_components = 3;
    cinfo.in_color_space = JCS_RGB;

    jpeg_set_defaults(&cinfo);
    jpeg_set_quality(&cinfo, 80, TRUE);

    jpeg_start_compress(&cinfo, TRUE);

    for (int row = 0; row < height; row++) {
        uint16_t *src = (uint16_t *)(frame + row * width * 2);
        uint8_t *dst = row_data;
        for (int col = 0; col < width; col++) {
            dst[0] = from565to8(*src, 11, 5);
            dst[1] = from565to8(*src, 5, 6);
            dst[2] = from565to8(*src, 0, 5);
            dst += 3;
            src++;
        }
        jpeg_write_scanlines(&cinfo, &row_pointer, 1);
    }

    jpeg_finish_compress(&cinfo);
    jpeg_destroy_compress(&cinfo);

    fclose(f);
    return 0;
}