Changeset 15144737c307c4a7195ab001ae199ef722e53b2b
- Timestamp:
- 15/08/08 12:43:41
(4 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1218797021 +0200
- git-parent:
[12473c40a81c491e7008ba291663065408f4a532]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1218797021 +0200
- Message:
macosx: fixed a few compilation warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc5132d3 |
r1514473 |
|
| 54 | 54 | aout_instance_t *p_aout = (aout_instance_t *)p_object; |
|---|
| 55 | 55 | if( p_object == NULL ) |
|---|
| 56 | | p_object = pl_Yield( p_intf ); |
|---|
| 57 | | if( p_object == NULL ) |
|---|
| 58 | | return; |
|---|
| | 56 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 59 | 57 | |
|---|
| 60 | 58 | psz_string = var_GetNonEmptyString( p_object, "audio-filter" ); |
|---|
| … | … | |
| 127 | 125 | VLC_OBJECT_AOUT, FIND_ANYWHERE ); |
|---|
| 128 | 126 | if( p_object == NULL ) |
|---|
| 129 | | p_object = pl_Yield( p_intf ); |
|---|
| 130 | | if( p_object == NULL ) |
|---|
| 131 | | return false; |
|---|
| | 127 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 132 | 128 | |
|---|
| 133 | 129 | if( (BOOL)config_GetInt( p_intf, "macosx-eq-keep" ) == YES ) |
|---|
| … | … | |
| 185 | 181 | |
|---|
| 186 | 182 | if( p_object == NULL ) |
|---|
| 187 | | p_object = pl_Yield( p_intf ); |
|---|
| 188 | | if( p_object == NULL ) |
|---|
| 189 | | return; |
|---|
| | 183 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 190 | 184 | |
|---|
| 191 | 185 | var_Create( p_object, "equalizer-preamp", VLC_VAR_FLOAT | |
|---|
| … | … | |
| 247 | 241 | |
|---|
| 248 | 242 | if( p_object == NULL ) |
|---|
| 249 | | p_object = pl_Yield( p_intf ); |
|---|
| 250 | | if( p_object == NULL ) |
|---|
| 251 | | return; |
|---|
| | 243 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 252 | 244 | |
|---|
| 253 | 245 | char psz_values[102]; |
|---|
| … | … | |
| 289 | 281 | VLC_OBJECT_AOUT, FIND_ANYWHERE ); |
|---|
| 290 | 282 | if( p_object == NULL ) |
|---|
| 291 | | p_object = pl_Yield( p_intf ); |
|---|
| 292 | | if( p_object == NULL ) |
|---|
| 293 | | return; |
|---|
| | 283 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 294 | 284 | |
|---|
| 295 | 285 | char psz_values[102]; |
|---|
| … | … | |
| 334 | 324 | VLC_OBJECT_AOUT, FIND_ANYWHERE ); |
|---|
| 335 | 325 | if( p_object == NULL ) |
|---|
| 336 | | p_object = pl_Yield( p_intf ); |
|---|
| 337 | | if( p_object == NULL ) |
|---|
| 338 | | return; |
|---|
| | 326 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 339 | 327 | |
|---|
| 340 | 328 | var_SetFloat( p_object, "equalizer-preamp", f_preamp ); |
|---|
| … | … | |
| 374 | 362 | aout_instance_t *p_aout = (aout_instance_t *)p_object; |
|---|
| 375 | 363 | if( p_object == NULL ) |
|---|
| 376 | | p_object = pl_Yield( p_intf ); |
|---|
| 377 | | if( p_object == NULL ) |
|---|
| 378 | | return; |
|---|
| | 364 | p_object = (vlc_object_t *)pl_Yield( p_intf ); |
|---|
| 379 | 365 | |
|---|
| 380 | 366 | var_SetBool( p_object, "equalizer-2pass", b_2p ); |
|---|
| … | … | |
| 411 | 397 | VLC_OBJECT_AOUT, FIND_ANYWHERE ); |
|---|
| 412 | 398 | if( p_object == NULL ) |
|---|
| 413 | | p_object = pl_Yield( VLCIntf ); |
|---|
| | 399 | p_object = (vlc_object_t *)pl_Yield( VLCIntf ); |
|---|
| 414 | 400 | |
|---|
| 415 | 401 | [o_window setExcludedFromWindowsMenu: TRUE]; |
|---|