Lots of changes, but notably:
* MiniDLNA can now pass the DLNA Conformance Test! * Dependence on libdlna has been removed, and the ffmpeg libs are used directly. * Lots of unused code has been cleaned up. * File transfers will now be forked off into a new process, so as not to tie up the server when sending data.
This commit is contained in:
11
metadata.h
11
metadata.h
@ -26,6 +26,17 @@ typedef struct metadata_s {
|
||||
char *dlna_pn;
|
||||
} metadata_t;
|
||||
|
||||
typedef struct tsinfo_s {
|
||||
int x;
|
||||
int packet_size;
|
||||
} tsinfo_t;
|
||||
|
||||
typedef enum {
|
||||
NONE,
|
||||
EMPTY,
|
||||
VALID
|
||||
} ts_timestamp_t;
|
||||
|
||||
int
|
||||
ends_with(const char * haystack, const char * needle);
|
||||
|
||||
|
Reference in New Issue
Block a user