mirror of
https://github.com/simon987/sist2.git
synced 2025-12-13 07:19:06 +00:00
13 lines
201 B
C
13 lines
201 B
C
#ifndef SIST2_MEDIA_H
|
|
#define SIST2_MEDIA_H
|
|
|
|
|
|
#include "src/sist.h"
|
|
|
|
#define MIN_VIDEO_SIZE 1024 * 64
|
|
#define MIN_IMAGE_SIZE 1024 * 2
|
|
|
|
void parse_media(const char * filepath, document_t *doc);
|
|
|
|
#endif
|