Mercurial > mplayer.hg
annotate input/mouse.h @ 23547:7acb7ac64104
Remove broken option reset from per-file loop
When -loop is used as a per-file option it seeks back to the start of
the file from the end and tries to reset options to their original
values. This reset is not implemented properly: it simply sets the
option variables back without running any of the associated control
code. Implementing the option reset functionality properly would be a
significant amount of work and there is no clear need for it, so I'm
simply removing the broken version.
None of this affects the use of -loop as a global option. That case has
a separate implementation which always starts a new file from scratch
with default option values.
author | uau |
---|---|
date | Sat, 16 Jun 2007 19:47:36 +0000 |
parents | 62d979592493 |
children | 6ac1ece1f9fe |
rev | line source |
---|---|
4589
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
1 |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
2 |
4657
610a11e4db36
Added key autorepeat support. Options to enable/disable joystick and lirc
albeu
parents:
4589
diff
changeset
|
3 #define MOUSE_BASE ((0x100+256)|MP_NO_REPEAT_KEY) |
4589
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
4 #define MOUSE_BTN0 (MOUSE_BASE+0) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
5 #define MOUSE_BTN1 (MOUSE_BASE+1) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
6 #define MOUSE_BTN2 (MOUSE_BASE+2) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
7 #define MOUSE_BTN3 (MOUSE_BASE+3) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
8 #define MOUSE_BTN4 (MOUSE_BASE+4) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
9 #define MOUSE_BTN5 (MOUSE_BASE+5) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
10 #define MOUSE_BTN6 (MOUSE_BASE+6) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
11 #define MOUSE_BTN7 (MOUSE_BASE+7) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
12 #define MOUSE_BTN8 (MOUSE_BASE+8) |
4ce20c55a18a
Added support for key combination and mouse buttons key code
albeu
parents:
diff
changeset
|
13 #define MOUSE_BTN9 (MOUSE_BASE+9) |
16974 | 14 |
15 #define MOUSE_BASE_DBL (0x300|MP_NO_REPEAT_KEY) | |
16 #define MOUSE_BTN0_DBL (MOUSE_BASE_DBL+0) | |
17 #define MOUSE_BTN1_DBL (MOUSE_BASE_DBL+1) | |
18 #define MOUSE_BTN2_DBL (MOUSE_BASE_DBL+2) | |
19 #define MOUSE_BTN3_DBL (MOUSE_BASE_DBL+3) | |
20 #define MOUSE_BTN4_DBL (MOUSE_BASE_DBL+4) | |
21 #define MOUSE_BTN5_DBL (MOUSE_BASE_DBL+5) | |
22 #define MOUSE_BTN6_DBL (MOUSE_BASE_DBL+6) | |
23 #define MOUSE_BTN7_DBL (MOUSE_BASE_DBL+7) | |
24 #define MOUSE_BTN8_DBL (MOUSE_BASE_DBL+8) | |
25 #define MOUSE_BTN9_DBL (MOUSE_BASE_DBL+9) |