Changeset f458ada1046dcf8ab43b33010ebac061c8512f11
- Timestamp:
- 27/04/08 22:42:35
(6 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1209328955 +0200
- git-parent:
[8d5fa522855cb11b9d211ab47a2f18875874acf2]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1209328955 +0200
- Message:
remove bogus code introduced in the previous commit
sorry about the disturbance
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3196a09 |
rf458ada |
|
| 137 | 137 | static int CreateVout( vlc_object_t *p_this ) |
|---|
| 138 | 138 | { |
|---|
| 139 | | /* This module is Leopard only */ |
|---|
| 140 | | #ifdef __APPLE__ |
|---|
| 141 | | long minorMacVersion; |
|---|
| 142 | | if( Gestalt( gestaltSystemVersionMinor, &minorMacVersion ) == noErr ) |
|---|
| 143 | | { |
|---|
| 144 | | if( minorMacVersion < 6 ) |
|---|
| 145 | | { |
|---|
| 146 | | msg_Warn( p_vout, "current osx version is 10.%ld, non-suitable for OpenglLayer video output", minorMacVersion ); |
|---|
| 147 | | return VLC_ENOOBJ; |
|---|
| 148 | | } |
|---|
| 149 | | } |
|---|
| 150 | | else |
|---|
| 151 | | { |
|---|
| 152 | | msg_Warn( p_vout, "couldn't get OS version" ); |
|---|
| 153 | | return VLC_EGENERIC; |
|---|
| 154 | | } |
|---|
| 155 | | #endif |
|---|
| 156 | | |
|---|
| 157 | 139 | vout_thread_t *p_vout = (vout_thread_t *)p_this; |
|---|
| 158 | 140 | vout_sys_t *p_sys; |
|---|