2014-06-13 07:20:02 +00:00
|
|
|
#include "strategies-nal.h"
|
|
|
|
|
2014-07-11 14:16:32 +00:00
|
|
|
#include "generic/nal-generic.h"
|
2014-06-02 09:20:20 +00:00
|
|
|
|
|
|
|
void (*array_checksum)(const pixel* data,
|
|
|
|
const int height, const int width,
|
|
|
|
const int stride,
|
|
|
|
unsigned char checksum_out[SEI_HASH_MAX_LENGTH]);
|
|
|
|
|
|
|
|
|
2014-06-13 07:20:02 +00:00
|
|
|
int strategy_register_nal(void* opaque) {
|
2014-07-11 14:16:32 +00:00
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
success &= strategy_register_nal_generic(opaque);
|
2014-06-02 09:20:20 +00:00
|
|
|
|
2014-07-11 14:16:32 +00:00
|
|
|
return success;
|
2014-06-02 09:20:20 +00:00
|
|
|
}
|