Mercurial > mplayer.hg
annotate libmpdemux/muxer_avi.h @ 36959:97a4746e7888
Utilize item defaults given in the skin configuration as start values.
Do so for movie position, volume and balance (and hence show these
values before playback).
Add new btnValue() to retrieve the value and replace the btnModify()
calls with btnValue() calls. (The btnModify() calls will be performed
in the windows' draw handler prior to rendering anyway.)
Initialize last_balance with -1 in order to be able to initialize
balance (and volume) with the start values prior to playback (in
GUI_SET_AUDIO).
author | ib |
---|---|
date | Mon, 24 Mar 2014 10:48:55 +0000 |
parents | 1d38e2c9c005 |
children |
rev | line source |
---|---|
31377
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
1 /* |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
2 * This file is part of MPlayer. |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
3 * |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
5 * modify it under the terms of the GNU Lesser General Public |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
6 * License as published by the Free Software Foundation; either |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
7 * version 2.1 of the License, or (at your option) any later version. |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
8 * |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
12 * Lesser General Public License for more details. |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
13 * |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
14 * You should have received a copy of the GNU Lesser General Public License |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
15 * along with MPlayer; if not, write to the Free Software Foundation, Inc., |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
17 */ |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
18 |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
19 #ifndef MPLAYER_MUXER_AVI_H |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
20 #define MPLAYER_MUXER_AVI_H |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
21 |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
22 extern float avi_aspect_override; |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
23 extern int write_odml; |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
24 |
1d38e2c9c005
Add header file for the extern declarations from muxer_avi.c.
diego
parents:
diff
changeset
|
25 #endif /* MPLAYER_MUXER_AVI_H */ |