mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 10:46:45 +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
|