annotate mplayer.h @ 30811:50e0f6942e43

Implement Win32 mutexes. Implement Win32 mutexes; they used to just be mapped on top of events, which is not the same thing at all. The implementation is pretty much the obvious one, similar to the current critical section implementation and the semaphore implementation; a single lock count protected by a pthread mutex, and an event lockers can sleep on to know when the mutex is available. Also make CreateMutexA and ReleaseMutex available even if QuickTime codecs support is not configured.
author sesse
date Sat, 06 Mar 2010 10:13:37 +0000
parents 7bebe34b6ad2
children dc26022e9c27
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30429
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
1 /*
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
2 * This file is part of MPlayer.
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
3 *
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
5 * it under the terms of the GNU General Public License as published by
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
7 * (at your option) any later version.
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
8 *
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
12 * GNU General Public License for more details.
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
13 *
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
14 * You should have received a copy of the GNU General Public License along
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
c1a3f1bbba26 Add license header to all top-level files missing them.
diego
parents: 28051
diff changeset
17 */
724
pontscho
parents:
diff changeset
18
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25965
diff changeset
19 #ifndef MPLAYER_MPLAYER_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25965
diff changeset
20 #define MPLAYER_MPLAYER_H
724
pontscho
parents:
diff changeset
21
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
22 extern char* current_module;
724
pontscho
parents:
diff changeset
23
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
24 extern char ** audio_fm_list;
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
25 extern char ** video_fm_list;
7582
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7559
diff changeset
26 extern char ** video_driver_list;
4a233f3b09a7 add [video||audio]_driver_list
pontscho
parents: 7559
diff changeset
27 extern char ** audio_driver_list;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
28 extern char * video_driver;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
29 extern char * audio_driver;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
30 extern float audio_delay;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
31
6619
f554e7271587 fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents: 6335
diff changeset
32 extern int osd_level;
18287
292337d09af2 Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents: 17566
diff changeset
33 extern unsigned int osd_visible;
6619
f554e7271587 fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
pontscho
parents: 6335
diff changeset
34
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
35 extern char * font_name;
23338
2a66d95355f0 add new -subfont option, that allows having a different font for OSD (controls and menu) and subtitles
ben
parents: 21370
diff changeset
36 extern char * sub_font_name;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
37 extern float font_factor;
25965
4cd12675cfbb Change force_fps and force_ofps to double
reimar
parents: 24149
diff changeset
38 extern double force_fps;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
39
9870
09d630a4f991 support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents: 9746
diff changeset
40 //extern char **sub_name;
6796
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
41 extern float sub_delay;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
42 extern float sub_fps;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
43 extern int sub_auto;
9c828335b2d0 add preferences to gui
pontscho
parents: 6627
diff changeset
44
6627
fd3ac41ee1a1 add equalizer support and fix some small bug...
pontscho
parents: 6619
diff changeset
45 extern char * filename;
fd3ac41ee1a1 add equalizer support and fix some small bug...
pontscho
parents: 6619
diff changeset
46
7526
e3ca9e707857 - fix new afm/vfm support
pontscho
parents: 7186
diff changeset
47 extern int stream_cache_size;
8311
37ab4e646f65 add autosync && some 10l bugfix
pontscho
parents: 7821
diff changeset
48 extern int autosync;
7559
b645204ea527 some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents: 7541
diff changeset
49
7019
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
50 extern int frame_dropping;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
51
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
52 extern int auto_quality;
e37a67d5e117 fix (?) cmd line handling
pontscho
parents: 6796
diff changeset
53
7821
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
54 extern int audio_id;
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
55 extern int video_id;
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
56 extern int dvdsub_id;
8423
c6a1a5b6ba25 - fix three submenu bug
pontscho
parents: 8311
diff changeset
57 extern int vobsub_id;
7821
1efdf16883a0 add and extended Gregory Kovriga's <gkovriga@techunix.technion.ac.il> patch
pontscho
parents: 7582
diff changeset
58
28051
9e739bdb049c Get rid of pointless 'extern' keywords.
diego
parents: 26029
diff changeset
59 void update_set_of_subtitles(void);
5919
60cf2bca993f some bug fix
pontscho
parents: 4981
diff changeset
60
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25965
diff changeset
61 #endif /* MPLAYER_MPLAYER_H */