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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
|
/* nut.c - A simple NUT encoder with the following properties:
*
* - Each frame is an uncompressed 8-bit RGB (specifically `(msb)2B
* 3G 3R(lsb)`, known as the 4CC "BGR\x08") framebuffer.
*
* - Each pixel in the framebuffer is non-square; it is twice as tall
* as it is wide.
*
* - The resolution may change mid-stream, between the values
* 640x480, 720x480, and 720x576. This is the display-resolution;
* because of non-square pixels, the framebuffer for each would be
* 640x240, 720x240, and 720x288, respectively.
*
* - VFR (Variable Frame Rate) - Each frame has its own timestamp.
*/
#include <assert.h> /* for static_assert() */
#include <stdbool.h> /* for bool, true, false */
#include <stdint.h> /* for uint{n}_t, UINT64_MAX */
#include <stdio.h> /* for perror() */
#include <stdlib.h> /* for realloc(), free() */
#include <string.h> /* for memcpy(), memset() */
#include <unistd.h> /* for write() */
/* Generic ********************************************************************/
#define LM_ARRAY_LEN(ary) (sizeof(ary)/sizeof((ary)[0]))
#define LM_CEILDIV(n, d) ( ((n)+(d)-1) / (d) )
#define LM_NEXT_POWER_OF_2(x) ( (x) ? 1ULL<<((sizeof(unsigned long long)*8)-__builtin_clzll(x)) : 1)
#define LM_CAT2(a, b) a ## b
#define LM_CAT2_(a, b) LM_CAT2(a, b)
#define assert_notreached(msg) assert(false)
struct buf {
uint8_t *dat;
size_t len;
size_t cap;
};
void append(struct buf *buf, void *dat, size_t len) {
assert(buf);
assert(len == 0 || dat);
if (buf->len + len > buf->cap) {
buf->cap = LM_NEXT_POWER_OF_2(buf->len + len);
buf->dat = realloc(buf->dat, buf->cap);
assert(buf->dat);
}
memcpy(&buf->dat[buf->len], dat, len);
buf->len += len;
}
void append_u32be(struct buf *buf, uint32_t val) {
assert(buf);
uint8_t dat[4] = {
(val>>(8*3))&0xFF,
(val>>(8*2))&0xFF,
(val>>(8*1))&0xFF,
(val>>(8*0))&0xFF,
};
append(buf, dat, sizeof(dat));
}
bool xwrite(int fd, uint8_t *dat, size_t len) {
assert(len == 0 || dat);
for (size_t done = 0; done < len;) {
ssize_t n = write(fd, &dat[done], len-done);
if (n < 0) {
perror("write");
return true;
}
done += n;
}
return false;
}
/* NUT ************************************************************************/
/* Magic values. *****************************************/
uint8_t nut_file_id_string[] = "nut/multimedia container"; /* including NUL terminator */
uint8_t nut_startcode_main[] = {'N', 'M', 0x7A, 0x56, 0x1F, 0x5F, 0x04, 0xAD };
uint8_t nut_startcode_stream[] = {'N', 'S', 0x11, 0x40, 0x5B, 0xF2, 0xF9, 0xDB };
uint8_t nut_startcode_syncpoint[] = {'N', 'K', 0xE4, 0xAD, 0xEE, 0xCA, 0x45, 0x69 };
uint8_t nut_startcode_index[] = {'N', 'X', 0xDD, 0x67, 0x2F, 0x23, 0xE6, 0x4E };
uint8_t nut_startcode_info[] = {'N', 'I', 0xAB, 0x68, 0xB5, 0x96, 0xBA, 0x78 };
#define NUT_FRAMEFLAG_KEY (1<< 0)
#define NUT_FRAMEFLAG_EOR (1<< 1)
#define _NUT_FRAMEFLAG_2 (1<< 2)
#define NUT_FRAMEFLAG_CODED_PTS (1<< 3)
#define NUT_FRAMEFLAG_STREAM_ID (1<< 4)
#define NUT_FRAMEFLAG_SIZE_MSB (1<< 5)
#define NUT_FRAMEFLAG_CHECKSUM (1<< 6)
#define NUT_FRAMEFLAG_RESERVED (1<< 7)
#define NUT_FRAMEFLAG_SM_DATA (1<< 8)
#define _NUT_FRAMEFLAG_9 (1<< 9)
#define NUT_FRAMEFLAG_HEADER_IDX (1<<10)
#define NUT_FRAMEFLAG_MATCH_TIME (1<<11)
#define NUT_FRAMEFLAG_CODED (1<<12)
#define NUT_FRAMEFLAG_INVALID (1<<13)
#define NUT_MAINFLAG_BROADCAST_MODE (1<< 0)
#define NUT_MAINFLAG_PIPE_MODE (1<< 1)
#define NUT_UNKNOWN_MATCH_TIME (1-(UINT64_C(1)<<62))
enum nut_stream_class {
NUT_STREAMCLASS_VIDEO = 0,
NUT_STREAMCLASS_AUDIO = 1,
NUT_STREAMCLASS_SUBTITLES = 2,
NUT_STREAMCLASS_USERDATA = 3,
};
#define NUT_STREAMFLAG_FIXED_FPS (1<< 1)
enum nut_colorspace {
NUT_COLORSPACE_UNKNOWN = 0,
NUT_COLORSPACE_ITU642_TRUNC = 1,
NUT_COLORSPACE_ITU709_TRUNC = 2,
NUT_COLORSPACE_ITU642_FULL = 17,
NUT_COLORSPACE_ITU709_FILL = 18,
};
/* Basic fixed-length types. *****************************/
void nut_append_u8(struct buf *buf, uint8_t val) {
assert(buf);
append(buf, &val, 1);
}
void nut_append_u32(struct buf *buf, uint32_t val) {
assert(buf);
append_u32be(buf, val);
}
/* Basic variable-length types. **************************/
void nut_append_vu(struct buf *buf, uint64_t val) {
assert(buf);
uint8_t dat[10] = {
0x80|((val>>(7*9))&0x7F),
0x80|((val>>(7*8))&0x7F),
0x80|((val>>(7*7))&0x7F),
0x80|((val>>(7*6))&0x7F),
0x80|((val>>(7*5))&0x7F),
0x80|((val>>(7*4))&0x7F),
0x80|((val>>(7*3))&0x7F),
0x80|((val>>(7*2))&0x7F),
0x80|((val>>(7*1))&0x7F),
0x00|((val>>(7*0))&0x7F),
};
uint8_t skip = 0;
while (dat[skip] == 0x80)
skip++;
append(buf, &dat[skip], sizeof(dat)-skip);
}
void nut_append_vs(struct buf *buf, int64_t val) {
assert(buf);
assert((val < 0 ? -val : val) <= UINT64_MAX>>1);
uint64_t temp;
if (val > 0)
temp = val << 1;
else
temp = ((-val) << 1) | 1;
temp--;
nut_append_vu(buf, temp);
}
void nut_append_vb(struct buf *buf, void *dat, size_t len) {
assert(buf);
assert(len == 0 || dat);
nut_append_vu(buf, len);
append(buf, dat, len);
}
#define nut_append_vb_str(buf, str) nut_append_vb(buf, str, sizeof(str)-1)
/* Mid-level. ********************************************/
uint32_t nut_crc32(uint8_t *dat, int len){
assert(len == 0 || dat);
/* "Generator polynomial is 0x104C11DB7." */
static const uint32_t table[16] = {
0x00000000, 0x04C11DB7, 0x09823B6E, 0x0D4326D9,
0x130476DC, 0x17C56B6B, 0x1A864DB2, 0x1E475005,
0x2608EDB8, 0x22C9F00F, 0x2F8AD6D6, 0x2B4BCB61,
0x350C9B64, 0x31CD86D3, 0x3C8EA00A, 0x384FBDBD,
};
/* "Starting value is zero." */
uint32_t crc = 0;
while (len--) {
crc ^= *dat++ << 24;
crc = (crc<<4) ^ table[crc>>28];
crc = (crc<<4) ^ table[crc>>28];
}
return crc;
}
void nut_append_packet(struct buf *buf, uint8_t *startcode, void *data, size_t len) {
assert(buf);
assert(startcode);
assert(len == 0 || data);
size_t packet_beg = buf->len;
append(buf, startcode, 8);
nut_append_vu(buf, len+4);
if (len+4 > 4096)
nut_append_u32(buf, nut_crc32(&buf->dat[packet_beg], buf->len - packet_beg));
size_t data_beg = buf->len;
append(buf, data, len);
nut_append_u32(buf, nut_crc32(&buf->dat[data_beg], buf->len - data_beg));
}
/* High-level (specific to the properties we want) ****************************/
enum app_res {
APP_RES_640_480 = 0,
APP_RES_720_480 = 1,
APP_RES_720_576 = 2,
};
#define APP_RES_MIN APP_RES_640_480
#define APP_RES_MAX APP_RES_720_576
size_t app_res_w(enum app_res res) {
switch (res) {
case APP_RES_640_480: return 640;
case APP_RES_720_480: return 720;
case APP_RES_720_576: return 720;
default: assert_notreached("invalid res");
}
}
size_t app_res_h(enum app_res res) {
switch (res) {
case APP_RES_640_480: return 480/2;
case APP_RES_720_480: return 480/2;
case APP_RES_720_576: return 576/2;
default: assert_notreached("invalid res");
}
}
size_t app_res_fb_size(enum app_res res) {
return app_res_w(res)*app_res_h(res);
}
#define APP_FRAME_SIZE_MSB_MUL 0x2000 /* must be less than 0x4000 */
#define APP_FRAME_MAX_HEADER 16
struct app_state {
enum app_res res;
};
bool app_write_intro(int fd, uint64_t time_ns) {
struct buf out = {0};
struct buf pkt = {0};
unsigned int frame_code = 0;
#define INC_FRAME_CODE() do { frame_code++; if (frame_code == 'N') frame_code++; } while(0)
append(&out, nut_file_id_string, sizeof(nut_file_id_string));
#define BOGUS(n) n
/* main_header ********************************************************/
pkt.len = 0;
/* head *******************************************/
nut_append_vu(&pkt, 4); /*! version */
nut_append_vu(&pkt, 0); /*! minor_version */
nut_append_vu(&pkt, APP_RES_MAX+1); /*! stream_count */
nut_append_vu(&pkt, /*! max_distance */
APP_FRAME_MAX_HEADER +
app_res_fb_size(APP_RES_MAX));
/* time bases *************************************/
nut_append_vu(&pkt, 1); /*! time_base_count */
/* time_base[0] = 1ns */
nut_append_vu(&pkt, 1); /*! numerator */
nut_append_vu(&pkt, 1000000000ULL); /*! denominator */
/* frame codes ************************************/
/* "A muxer SHOULD mark [frame codes] 0x00 and 0xFF as invalid" */
/* frame_code=0 (invalid) */
nut_append_vu(&pkt, NUT_FRAMEFLAG_INVALID); /*! flags */
nut_append_vu(&pkt, 2); /*! field_count */
nut_append_vu(&pkt, BOGUS(0)); /*! 0: fields.pts */
nut_append_vu(&pkt, 1); /*! 1: fields.size_msb_nul */
INC_FRAME_CODE();
for (enum app_res res = APP_RES_MIN; res <= APP_RES_MAX; res++) {
/* frame_code=(res*2)+1 (`res` keyframe) */
nut_append_vu(&pkt, /*! flags */
NUT_FRAMEFLAG_KEY | /* Because they're full framebuffers, all frames are keyframes. */
NUT_FRAMEFLAG_SIZE_MSB | /* 640*480/2 > 16384 (the max val of data_size_lsb). */
NUT_FRAMEFLAG_CODED_PTS | /* framerate is unknown, each frame must have a timestamp. */
NUT_FRAMEFLAG_CHECKSUM ); /* framerate is unknown, guard against exceeding max_pts_distance. */
nut_append_vu(&pkt, 6); /*! field_count */
nut_append_vu(&pkt, BOGUS(0)); /*! 0: fields.pts */
nut_append_vu(&pkt, APP_FRAME_SIZE_MSB_MUL); /*! 1: fields.size_msb_nul */
nut_append_vu(&pkt, res); /*! 2: fields.stream */
nut_append_vu(&pkt, /*! 3: fields.size_lsb */
app_res_fb_size(res) % APP_FRAME_SIZE_MSB_MUL);
nut_append_vu(&pkt, 0); /*! 4: fields.reserved */
nut_append_vu(&pkt, 1); /*! 5: fields.count */
INC_FRAME_CODE();
/* frame_code=(res*2)+2 (`res` EOR frame) */
nut_append_vu(&pkt, /*! flags */
NUT_FRAMEFLAG_KEY | /* Because they're full framebuffers, all frames are keyframes. */
NUT_FRAMEFLAG_EOR |
NUT_FRAMEFLAG_CODED_PTS | /* framerate is unknown, each frame must have a timestamp. */
NUT_FRAMEFLAG_CHECKSUM ); /* framerate is unknown, guard against exceeding max_pts_distance. */
nut_append_vu(&pkt, 6); /*! field_count */
nut_append_vu(&pkt, BOGUS(0)); /*! 0: fields.pts */
nut_append_vu(&pkt, BOGUS(1)); /*! 1: fields.size_msb_nul */
nut_append_vu(&pkt, res); /*! 2: fields.stream */
nut_append_vu(&pkt, 0); /*! 3: fields.size_lsb */
nut_append_vu(&pkt, 0); /*! 4: fields.reserved */
nut_append_vu(&pkt, 1); /*! 5: fields.count */
INC_FRAME_CODE();
}
/* frame_code=N-255 (invalid) */
nut_append_vu(&pkt, NUT_FRAMEFLAG_INVALID); /*! flags */
nut_append_vu(&pkt, 2); /*! field_count */
nut_append_vu(&pkt, BOGUS(0)); /*! 0: fields.pts */
nut_append_vu(&pkt, /*! 1: fields.size_msb_nul */
256-frame_code-(frame_code < 'N' ? 1 : 0));
/* tail *******************************************/
nut_append_vu(&pkt, 0); /*! header_count_minus_1 */
nut_append_vu(&pkt, NUT_MAINFLAG_PIPE_MODE); /*! main_flags */
nut_append_packet(&out, nut_startcode_main, pkt.dat, pkt.len);
/* stream_header ******************************************************/
for (enum app_res res = APP_RES_MIN; res <= APP_RES_MAX; res++) {
pkt.len = 0;
nut_append_vu(&pkt, res); /*! stream_id */
nut_append_vu(&pkt, NUT_STREAMCLASS_VIDEO); /*! stream_class */
nut_append_vb(&pkt, "BGR\x08", 4); /*! fourcc */
nut_append_vu(&pkt, 0); /*! time_base_id */
nut_append_vu(&pkt, BOGUS(0)); /*! msb_pts_shift (only relevant if FRAMEFLAG_CODED_PTS) */
nut_append_vu(&pkt, BOGUS(0)); /*! max_pts_distance (all frames have a checksum) */
nut_append_vu(&pkt, 0); /*! decode_delay */
nut_append_vu(&pkt, 0); /*! stream_flags */
nut_append_vb(&pkt, NULL, 0); /*! codec_specific_data */
nut_append_vu(&pkt, app_res_w(res)); /*! width */
nut_append_vu(&pkt, app_res_h(res)); /*! height */
nut_append_vu(&pkt, 1); /*! sample_width */
nut_append_vu(&pkt, 2); /*! sample_height */
nut_append_vu(&pkt, NUT_COLORSPACE_UNKNOWN); /*! colorspace_type */
nut_append_packet(&out, nut_startcode_stream, pkt.dat, pkt.len);
}
/* syncpoint **********************************************************/
pkt.len = 0;
nut_append_vu(&pkt, time_ns); /*! global_key_pts */
nut_append_vu(&pkt, 0); /*! back_ptr_div16 */
nut_append_packet(&out, nut_startcode_syncpoint, pkt.dat, pkt.len);
/* flush **************************************************************/
#undef BOGUS
bool ret = xwrite(fd, out.dat, out.len);
free(out.dat);
free(pkt.dat);
return ret;
}
bool app_write_frame(int fd, struct app_state *state, uint64_t time_ns, enum app_res res, void *framebuffer) {
assert(framebuffer);
struct buf out = {0};
struct buf pkt = {0};
if (res != state->res) {
/* EOR frame ( 1+10+4 = 15 bytes) */
uint64_t frame_beg = out.len;
nut_append_u8(&out, (2*(state->res))+2); /*! frame_code (1 byte) */
nut_append_vu(&out, time_ns); /*! coded_pts (<=10 bytes) */
nut_append_u32(&out, nut_crc32(&out.dat[frame_beg], out.len - frame_beg)); /*! checksum (4 bytes) */
}
/* frame header ( 1+10+1+4 = 16 bytes) */
uint64_t frame_beg = out.len;
nut_append_u8(&out, (2*res)+1); /*! frame_code (1 byte) */
nut_append_vu(&out, time_ns); /*! coded_pts (<=10 bytes) */
nut_append_vu(&out, app_res_fb_size(res) / APP_FRAME_SIZE_MSB_MUL); /*! data_size_msb (1 byte) */
nut_append_u32(&out, nut_crc32(&out.dat[frame_beg], out.len - frame_beg)); /*! checksum (4 bytes) */
assert(out.len - frame_beg <= APP_FRAME_MAX_HEADER);
/* flush */
bool err = xwrite(fd, out.dat, out.len);
free(out.dat);
free(pkt.dat);
if (err)
return true;
/* frame data */
if (xwrite(fd, framebuffer, app_res_fb_size(res)))
return true;
/* return */
state->res = res;
return false;
}
/* Demo application ***********************************************************/
char font[10][8*4] = {
" ## "
" # # "
" # # "
" ## ",
" # "
" ## "
" # "
" ### ",
" ## "
" # # "
" # "
" #### ",
" ## "
" # "
" # "
" ## ",
" ## "
" # # "
" #### "
" # ",
" #### "
" ### "
" # "
" ### ",
" # "
" ### "
" # # "
" ## ",
" #### "
" # "
" # "
" # ",
" ## "
" # # "
" #### "
" ## ",
" ## "
" # # "
" ### "
" # ",
};
static_assert(LM_ARRAY_LEN(font) == 10);
static_assert(sizeof(font[0]) == 32);
int main() {
if (app_write_intro(1, 0))
return 1;
struct app_state state = {
.res = 0,
};
uint8_t framebuffer[app_res_fb_size(APP_RES_MAX)];
#define SCALE 10
for (int i = 0; i < 10; i++) {
memset(framebuffer, 0, sizeof(framebuffer));
for (int y = 0; y < 4*SCALE; y++)
for (int x = 0; x < 8*SCALE; x++)
framebuffer[(y*app_res_w(i%(APP_RES_MAX+1)))+x] = font[i][((y/SCALE)*8)+(x/SCALE)] == ' ' ? 0b11000000 : 0b00000011;
if (app_write_frame(1, &state, ((uint64_t)i)*1000000000ULL, i%(APP_RES_MAX+1), framebuffer))
return 1;
}
return 0;
}
|