Mercurial > libedl
comparison include/edl.h @ 12:0cc2555db371
*: make our string functions not stupid
strncat() made everything slow!
new addition internally: an EDL_header structure to make things
not stupid. if we were using C++ it wouldn't really be necessary,
but alas :)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 27 Mar 2024 13:38:30 -0400 |
parents | 0c98b46eaf73 |
children | 41b74137e201 |
comparison
equal
deleted
inserted
replaced
11:a0bd92c4c0e8 | 12:0cc2555db371 |
---|---|
14 MEDIATYPE_UNKNOWN | 14 MEDIATYPE_UNKNOWN |
15 } EDL_media_type_t; | 15 } EDL_media_type_t; |
16 | 16 |
17 typedef enum { | 17 typedef enum { |
18 EDL_PARSE_ERROR_SUCCESS = 0, | 18 EDL_PARSE_ERROR_SUCCESS = 0, |
19 EDL_PARSE_ERROR_OUT_OF_MEMORY | 19 EDL_PARSE_ERROR_OUT_OF_MEMORY, |
20 EDL_PARSE_ERROR_HEADER | |
20 } EDL_parse_error_t; | 21 } EDL_parse_error_t; |
21 | 22 |
22 typedef struct { | 23 typedef struct { |
23 int id; | 24 int id; |
24 int track; | 25 int track; |