mirror of
https://github.com/sist2app/sist2.git
synced 2026-01-17 00:26:28 +00:00
15 lines
269 B
C
15 lines
269 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_filename(const char * filepath, document_t *doc);
|
|
|
|
void parse_media_vfile(struct vfile *f, document_t *doc);
|
|
|
|
#endif
|