Changeset 6cf432c2dd4a81a68f2a09b66fb2b321ac90c298
- Timestamp:
- 21/02/08 00:35:12
(10 months ago)
- Author:
- Damien Fouilleul <damienf@videolan.org>
- git-committer:
- Damien Fouilleul <damienf@videolan.org> 1203550512 +0000
- git-parent:
[954ff1ecfd6f064bfc01323375180f99b99322d2]
- git-author:
- Damien Fouilleul <damienf@videolan.org> 1203550512 +0000
- Message:
MacOSX: fix macosx-embedded -> embedded-video migration
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6368b52 |
r6cf432c |
|
| 336 | 336 | config_PutInt( p_intf, "fetch-meta", [o_intf_meta_ckb state] ); |
|---|
| 337 | 337 | config_PutInt( p_intf, "macosx-fspanel", [o_intf_fspanel_ckb state] ); |
|---|
| 338 | | config_PutInt( p_intf, "video-embeded", [o_intf_embedded_ckb state] ); |
|---|
| | 338 | config_PutInt( p_intf, "embedded-video", [o_intf_embedded_ckb state] ); |
|---|
| 339 | 339 | |
|---|
| 340 | 340 | /* okay, let's save our changes to vlcrc */ |
|---|
| r6368b52 |
r6cf432c |
|
| 723 | 723 | var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); |
|---|
| 724 | 724 | var_Create( p_vout, "macosx-black", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); |
|---|
| 725 | | |
|---|
| | 725 | var_Create( p_vout, "embedded-video", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); |
|---|
| 726 | 726 | |
|---|
| 727 | 727 | /* We only wait for NSApp to initialise if we're not embedded (as in the |
|---|
| r7fd77d9 |
r6cf432c |
|
| 1468 | 1468 | add_bool( "embedded-video", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT, |
|---|
| 1469 | 1469 | VLC_TRUE ); |
|---|
| | 1470 | #ifdef __APPLE__ |
|---|
| | 1471 | add_deprecated_alias( "macosx-embedded" ); /*deprecated since 0.9.0 */ |
|---|
| | 1472 | #endif |
|---|
| 1470 | 1473 | add_bool( "drop-late-frames", 1, NULL, DROP_LATE_FRAMES_TEXT, |
|---|
| 1471 | 1474 | DROP_LATE_FRAMES_LONGTEXT, VLC_TRUE ); |
|---|