about summary refs log tree commit diff
path: root/converter/other/yuy2topam.c
blob: 8416d393f37e69ff431b074c071de66d736920e1 (plain) (blame)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/* Convert an YUY2 image to a PAM image
 *
 * See
 * http://msdn.microsoft.com/en-us/library/aa904813%28VS.80%29.aspx#yuvformats_2
 * and http://www.digitalpreservation.gov/formats/fdd/fdd000364.shtml for
 * details.
 *
 * By Michael Haardt 2014.
 *
 * Contributed to the public domain by its author.
 *
 * Recoded in Netpbm style by Bryan Henderson
 */

#include <stdio.h>
#include <string.h>

#include "pm_c_util.h"
#include "mallocvar.h"
#include "pm.h"
#include "pam.h"
#include "shhopt.h"



struct CmdlineInfo {
    const char * inputFileName;
    unsigned int width;
    unsigned int height;
};



static void
parseCommandLine(int argc, const char ** argv,
                 struct CmdlineInfo * const cmdlineP) {
/* --------------------------------------------------------------------------
   Parse program command line described in Unix standard form by argc
   and argv.  Return the information in the options as *cmdlineP

   If command line is internally inconsistent (invalid options, etc.),
   issue error message to stderr and abort program.

   Note that the strings we return are stored in the storage that
   was passed to us as the argv array.  We also trash *argv.
--------------------------------------------------------------------------*/
    optEntry * option_def; /* Used by OPTENT3 */
    optStruct3 opt;

    unsigned int widthSpec, heightSpec;
    unsigned int option_def_index;

    MALLOCARRAY_NOFAIL(option_def, 100);

    option_def_index = 0;   /* incremented by OPTENT3 */
    OPTENT3(0, "width",    OPT_UINT,
            &cmdlineP->width,   &widthSpec,                             0);
    OPTENT3(0, "height",   OPT_UINT,
            &cmdlineP->height,  &heightSpec,                            0);

    opt.opt_table = option_def;
    opt.short_allowed = false;  /* We have no short (old-fashioned) options */
    opt.allowNegNum = false;   /* We have no parms that are negative numbers */

    pm_optParseOptions4(&argc, argv, opt, sizeof(opt), 0);
        /* Uses and sets argc, argv, and some of *cmdlineP and others. */

    if (!widthSpec)
        pm_error("You must specify the image width with -width");
    if (cmdlineP->width == 0)
        pm_error("-width cannot be zero");

    if (cmdlineP->width % 2 != 0)
        pm_error("-width %u is odd, but YUY2 images must have an even width.",
                 cmdlineP->width);

    if (!heightSpec)
        pm_error("You must specify the image height with -height");
    if (cmdlineP->height == 0)
        pm_error("-height cannot be zero");

    if (argc-1 < 1)
        cmdlineP->inputFileName = "-";
    else {
        cmdlineP->inputFileName = argv[1];

        if (argc-1 > 1)
            pm_error("Too many arguments (%u).  The only non-option argument "
                     "is the input file name.", argc-1);
    }
}



typedef struct {
    int y0;
    int y1;
    int u;
    int v;
} Yuy2Pixel;



static Yuy2Pixel
readPixel(FILE * const ifP) {
/*----------------------------------------------------------------------------
   Read one pixel from the YUY2 input.  YUY2 represents a pixel in 4 bytes.
-----------------------------------------------------------------------------*/
    Yuy2Pixel retval;
    unsigned char c;

    pm_readcharu(ifP, &c); retval.y0 = c -  16;
    pm_readcharu(ifP, &c); retval.u  = c - 128;
    pm_readcharu(ifP, &c); retval.y1 = c -  16;
    pm_readcharu(ifP, &c); retval.v  = c - 128;

    return retval;
}



typedef struct {
    int a1;
    int a2;
    int a3;
    int a4;
} UvCoeff;

typedef struct {
    int a0a;
    int a0b;
    UvCoeff uv;
} Coeff;



static Coeff
coeffFromYuy2(Yuy2Pixel const yuy2) {

    Coeff retval;

    retval.a0a   = 298 * yuy2.y0;
    retval.a0b   = 298 * yuy2.y1;
    retval.uv.a1 = 409 * yuy2.v;
    retval.uv.a2 = 100 * yuy2.u;
    retval.uv.a3 = 208 * yuy2.v;
    retval.uv.a4 = 516 * yuy2.u;

    return retval;
}



typedef struct {
    int r;
    int g;
    int b;
} Rgb;



static Rgb
rgbFromCoeff(int     const a0,
             UvCoeff const uv) {

    Rgb retval;

    retval.r = (a0 + uv.a1 + 128) >> 8;
    retval.g = (a0 - uv.a2 - uv.a3 + 128) >> 8;
    retval.b = (a0 + uv.a4 + 128) >> 8;

    return retval;
}



static Rgb
rgbFromCoeff0(Coeff const coeff) {

    return rgbFromCoeff(coeff.a0a, coeff.uv);
}



static Rgb
rgbFromCoeff1(Coeff const coeff) {

    return rgbFromCoeff(coeff.a0b, coeff.uv);
}



static void
rgbToTuple(Rgb   const rgb,
           tuple const out) {

    out[PAM_RED_PLANE] = MIN(255, MAX(0, rgb.r));
    out[PAM_GRN_PLANE] = MIN(255, MAX(0, rgb.g));
    out[PAM_BLU_PLANE] = MIN(255, MAX(0, rgb.b));
}



static void
yuy2topam(const char * const fileName,
          unsigned int const width,
          unsigned int const height) {

    FILE * ifP;
    struct pam outpam;
    tuple * tuplerow;
    unsigned int row;

    outpam.size             = sizeof(struct pam);
    outpam.len              = PAM_STRUCT_SIZE(allocation_depth);
    outpam.file             = stdout;
    outpam.format           = PAM_FORMAT;
    outpam.plainformat      = 0;
    outpam.width            = width;
    outpam.height           = height;
    outpam.depth            = 3;
    outpam.maxval           = 255;
    outpam.bytes_per_sample = 1;
    strcpy(outpam.tuple_type, PAM_PPM_TUPLETYPE);
    outpam.allocation_depth = 3;

    ifP = pm_openr(fileName);

    pnm_writepaminit(&outpam);

    tuplerow = pnm_allocpamrow(&outpam);

    for (row = 0; row < outpam.height; ++row) {
        unsigned int col;

        for (col = 0; col < outpam.width; col += 2) {
            Yuy2Pixel const yuy2 = readPixel(ifP);

            Coeff const coeff = coeffFromYuy2(yuy2);

            rgbToTuple(rgbFromCoeff0(coeff), tuplerow[col]);
            rgbToTuple(rgbFromCoeff1(coeff), tuplerow[col+1]);
        }
        pnm_writepamrow(&outpam, tuplerow);
    }
    pnm_freepamrow(tuplerow);

    pm_closer(ifP);
}



int
main(int argc, const char *argv[]) {

    struct CmdlineInfo cmdline;

    pm_proginit(&argc, argv);

    parseCommandLine(argc, argv, &cmdline);

    yuy2topam(cmdline.inputFileName, cmdline.width, cmdline.height);

    return 0;
}