~ubuntu-branches/debian/experimental/smplayer/experimental

« back to all changes in this revision

Viewing changes to src/corelib/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-01-03 17:08:06 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090103170806-eodntb2slv6g2pb6
Tags: 0.6.6-0ubuntu1
* The "just before FF" release.
* New upstream release.
* debian/control: Bumped Standards-Version to 3.8.0.
* debian/copyright: Changed (C) to © to fix Lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
3
 
 
4
 
    This program is free software; you can redistribute it and/or modify
5
 
    it under the terms of the GNU General Public License as published by
6
 
    the Free Software Foundation; either version 2 of the License, or
7
 
    (at your option) any later version.
8
 
 
9
 
    This program is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
    GNU General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU General Public License
15
 
    along with this program; if not, write to the Free Software
16
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
*/
18
 
 
19
 
#ifndef _CONFIG_H_
20
 
#define _CONFIG_H_
21
 
 
22
 
 
23
 
// Activate the new code for aspect ratio
24
 
 
25
 
#define NEW_ASPECT_CODE 1
26
 
 
27
 
 
28
 
// STYLE_SWITCHING
29
 
// if 1, the preferences dialog will have an option to switch
30
 
// the Qt style
31
 
 
32
 
#define STYLE_SWITCHING 1
33
 
 
34
 
 
35
 
// EXTERNAL_SLEEP
36
 
// if 1, it will be used the function usleep() from unistd.h
37
 
// instead of QThread::msleep()
38
 
// It can be useful if your Qt doesn't have QThread support.
39
 
// Note: not much test it
40
 
// Note 2: not used anymore
41
 
 
42
 
#define EXTERNAL_SLEEP 0
43
 
 
44
 
 
45
 
// ENABLE_DELAYED_DRAGGING
46
 
// if 1, sends the dragging position of the time slider
47
 
// some ms later
48
 
 
49
 
#define ENABLE_DELAYED_DRAGGING 1
50
 
 
51
 
 
52
 
// SCALE_ASS_SUBS
53
 
// MPlayer r25843 adds the possibility to change the
54
 
// size of the subtitles, when using -ass, with the
55
 
// sub_scale slave command. Unfortunately this require
56
 
// a different code, which also makes the size of the
57
 
// subtitles to be very different when using -ass or not.
58
 
// Setting SCALE_ASS_SUBS to 1 activates this code.
59
 
 
60
 
#define SCALE_ASS_SUBS 1
61
 
 
62
 
 
63
 
// SMART_DVD_CHAPTERS
64
 
// if set to 1, the slave command "chapter" will use if not using a cache,
65
 
// otherwise mplayer will be restarted and -chapter will be used.
66
 
 
67
 
#define SMART_DVD_CHAPTERS 1
68
 
 
69
 
 
70
 
// Just for testing, possibility to disable the use of the colorkey
71
 
 
72
 
#define USE_COLORKEY 1
73
 
 
74
 
 
75
 
// NOTIFY_AUDIO_SUB_CHANGES
76
 
// if set to 1, mplayerprocess will notify changes in the audio and
77
 
// subtitle tracks that happen during playback.
78
 
 
79
 
#define NOTIFY_AUDIO_SUB_CHANGES 0
80
 
 
81
 
#endif