mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 18:34:06 +00:00
15 lines
381 B
C
15 lines
381 B
C
|
#include "nal.h"
|
||
|
#include "nal-generic.c"
|
||
|
|
||
|
void (*array_checksum)(const pixel* data,
|
||
|
const int height, const int width,
|
||
|
const int stride,
|
||
|
unsigned char checksum_out[SEI_HASH_MAX_LENGTH]);
|
||
|
|
||
|
|
||
|
static int strategy_register_nal(void* opaque) {
|
||
|
if (!strategy_register_nal_generic(opaque)) return 0;
|
||
|
|
||
|
return 1;
|
||
|
}
|