mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
e7db4ccf1a
patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
30 lines
613 B
C
30 lines
613 B
C
// EDL version 0.6
|
|
|
|
#ifndef EDLH
|
|
#define EDLH
|
|
|
|
#define EDL_SKIP 0
|
|
#define EDL_MUTE 1
|
|
|
|
#define EDL_MUTE_START 1
|
|
#define EDL_MUTE_END 0
|
|
|
|
struct edl_record {
|
|
float start_sec;
|
|
float stop_sec;
|
|
float length_sec;
|
|
short action;
|
|
struct edl_record* next;
|
|
struct edl_record* prev;
|
|
};
|
|
|
|
typedef struct edl_record* edl_record_ptr;
|
|
|
|
extern char *edl_filename; // file to extract EDL entries from (-edl)
|
|
extern char *edl_output_filename; // file to put EDL entries in (-edlout)
|
|
|
|
void free_edl(edl_record_ptr next_edl_record); // free's entire EDL list.
|
|
edl_record_ptr edl_parse_file(void); // fills EDL stack
|
|
|
|
#endif
|