summaryrefslogtreecommitdiffstats
path: root/edl.h
diff options
context:
space:
mode:
authoriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-29 12:24:43 +0000
committeriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-29 12:24:43 +0000
commit80d8313b709dd356f9dfdb3303da4611eda0a911 (patch)
tree5b477f3037996e743ad398793bf222ed0b47b371 /edl.h
parent20817ae85ed85a79a4436699aebf6fd843b83242 (diff)
downloadmpv-80d8313b709dd356f9dfdb3303da4611eda0a911.tar.bz2
mpv-80d8313b709dd356f9dfdb3303da4611eda0a911.tar.xz
several sets of headers declare global variables in them, which causes multiple definition errors with gcc 4.x
patch by Alexander Strange <astrange ithinksw.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14608 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'edl.h')
-rw-r--r--edl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/edl.h b/edl.h
index 76d06a03de..508c8b18be 100644
--- a/edl.h
+++ b/edl.h
@@ -23,8 +23,8 @@ struct edl_record {
typedef struct edl_record* edl_record_ptr;
-char *edl_filename; // file to extract EDL entries from (-edl)
-char *edl_output_filename; // file to put EDL entries in (-edlout)
+extern char *edl_filename; // file to extract EDL entries from (-edl)
+extern char *edl_output_filename; // file to put EDL entries in (-edlout)
int edl_check_mode(void); // we cannot do -edl and -edlout at the same time
int edl_count_entries(void); // returns total number of entries needed