Changeset 358bcd0521fb700b5685f4cba9ed2ae1a2bfd032
- Timestamp:
- 28/01/08 17:23:17
(10 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201537397 +0000
- git-parent:
[e51438389d700fb93c49dccafa766ab03d567547]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201537397 +0000
- Message:
control/: don't show warnings about unused exceptions
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r358bcd0 |
|
| 56 | 56 | libvlc_exception_t *p_e ) |
|---|
| 57 | 57 | { |
|---|
| | 58 | VLC_UNUSED(p_e); |
|---|
| | 59 | |
|---|
| 58 | 60 | aout_VolumeMute( p_instance->p_libvlc_int, NULL ); |
|---|
| 59 | 61 | } |
|---|
| … | … | |
| 88 | 90 | libvlc_exception_t *p_e ) |
|---|
| 89 | 91 | { |
|---|
| | 92 | VLC_UNUSED(p_e); |
|---|
| | 93 | |
|---|
| 90 | 94 | audio_volume_t i_volume; |
|---|
| 91 | 95 | |
|---|
| r6ee1e19 |
r358bcd0 |
|
| 252 | 252 | libvlc_exception_t * p_e ) |
|---|
| 253 | 253 | { |
|---|
| | 254 | VLC_UNUSED(p_e); |
|---|
| | 255 | |
|---|
| 254 | 256 | libvlc_media_list_retain( p_dmlist->p_mlist ); |
|---|
| 255 | 257 | return p_dmlist->p_mlist; |
|---|
| r99fab90 |
r358bcd0 |
|
| 436 | 436 | libvlc_exception_t *p_e ) |
|---|
| 437 | 437 | { |
|---|
| | 438 | VLC_UNUSED(p_e); |
|---|
| | 439 | |
|---|
| 438 | 440 | char * psz_meta; |
|---|
| 439 | 441 | |
|---|
| … | … | |
| 498 | 500 | libvlc_exception_t *p_e ) |
|---|
| 499 | 501 | { |
|---|
| | 502 | VLC_UNUSED(p_e); |
|---|
| | 503 | |
|---|
| 500 | 504 | struct libvlc_tags_storage_t * p_ts; |
|---|
| 501 | 505 | |
|---|
| … | … | |
| 529 | 533 | libvlc_exception_t *p_e ) |
|---|
| 530 | 534 | { |
|---|
| | 535 | VLC_UNUSED(p_e); |
|---|
| | 536 | |
|---|
| 531 | 537 | struct libvlc_tags_storage_t * p_ts; |
|---|
| 532 | 538 | int i; |
|---|
| … | … | |
| 560 | 566 | libvlc_exception_t *p_e ) |
|---|
| 561 | 567 | { |
|---|
| | 568 | VLC_UNUSED(p_e); |
|---|
| | 569 | |
|---|
| 562 | 570 | struct libvlc_tags_storage_t * p_ts; |
|---|
| 563 | 571 | |
|---|
| … | … | |
| 581 | 589 | libvlc_exception_t *p_e ) |
|---|
| 582 | 590 | { |
|---|
| | 591 | VLC_UNUSED(p_e); |
|---|
| | 592 | |
|---|
| 583 | 593 | struct libvlc_tags_storage_t * p_ts; |
|---|
| 584 | 594 | |
|---|
| … | … | |
| 601 | 611 | libvlc_exception_t * p_e ) |
|---|
| 602 | 612 | { |
|---|
| | 613 | VLC_UNUSED(p_e); |
|---|
| | 614 | |
|---|
| 603 | 615 | if( p_md->p_subitems ) |
|---|
| 604 | 616 | libvlc_media_list_retain( p_md->p_subitems ); |
|---|
| … | … | |
| 613 | 625 | libvlc_exception_t * p_e ) |
|---|
| 614 | 626 | { |
|---|
| | 627 | VLC_UNUSED(p_e); |
|---|
| | 628 | |
|---|
| 615 | 629 | return p_md->p_event_manager; |
|---|
| 616 | 630 | } |
|---|
| … | … | |
| 623 | 637 | libvlc_exception_t * p_e ) |
|---|
| 624 | 638 | { |
|---|
| | 639 | VLC_UNUSED(p_e); |
|---|
| | 640 | |
|---|
| 625 | 641 | if( p_md && p_md->p_input_item) |
|---|
| 626 | 642 | { |
|---|
| … | … | |
| 640 | 656 | libvlc_exception_t * p_e ) |
|---|
| 641 | 657 | { |
|---|
| | 658 | VLC_UNUSED(p_e); |
|---|
| | 659 | |
|---|
| 642 | 660 | if( p_md && p_md->p_input_item) |
|---|
| 643 | 661 | { |
|---|
| … | … | |
| 660 | 678 | libvlc_exception_t * p_e ) |
|---|
| 661 | 679 | { |
|---|
| | 680 | VLC_UNUSED(p_e); |
|---|
| | 681 | |
|---|
| 662 | 682 | if( p_md ) |
|---|
| 663 | 683 | { |
|---|
| … | … | |
| 675 | 695 | libvlc_exception_t * p_e ) |
|---|
| 676 | 696 | { |
|---|
| | 697 | VLC_UNUSED(p_e); |
|---|
| | 698 | |
|---|
| 677 | 699 | if( p_md ) |
|---|
| 678 | 700 | { |
|---|
| r0dbfd62 |
r358bcd0 |
|
| 398 | 398 | libvlc_exception_t * p_e ) |
|---|
| 399 | 399 | { |
|---|
| | 400 | VLC_UNUSED(p_e); |
|---|
| | 401 | |
|---|
| 400 | 402 | libvlc_media_descriptor_t * p_md; |
|---|
| 401 | 403 | |
|---|
| … | … | |
| 419 | 421 | libvlc_exception_t * p_e ) |
|---|
| 420 | 422 | { |
|---|
| | 423 | VLC_UNUSED(p_e); |
|---|
| | 424 | |
|---|
| 421 | 425 | libvlc_media_descriptor_t * p_md; |
|---|
| 422 | 426 | p_md = vlc_array_item_at_index( &p_mlist->items, index ); |
|---|
| … | … | |
| 435 | 439 | libvlc_exception_t * p_e ) |
|---|
| 436 | 440 | { |
|---|
| | 441 | VLC_UNUSED(p_e); |
|---|
| | 442 | |
|---|
| 437 | 443 | libvlc_media_descriptor_t * p_md; |
|---|
| 438 | 444 | int i; |
|---|
| r5a2dd0d |
r358bcd0 |
|
| 186 | 186 | libvlc_exception_t * p_e ) |
|---|
| 187 | 187 | { |
|---|
| | 188 | VLC_UNUSED(p_e); |
|---|
| | 189 | |
|---|
| 188 | 190 | libvlc_media_descriptor_t * p_md; |
|---|
| 189 | 191 | |
|---|
| … | … | |
| 264 | 266 | libvlc_exception_t * p_e ) |
|---|
| 265 | 267 | { |
|---|
| | 268 | VLC_UNUSED(p_e); |
|---|
| | 269 | |
|---|
| 266 | 270 | vlc_mutex_lock( &p_mlp->object_lock ); |
|---|
| 267 | 271 | |
|---|
| r99fab90 |
r358bcd0 |
|
| 53 | 53 | libvlc_exception_t *p_e) |
|---|
| 54 | 54 | { |
|---|
| | 55 | VLC_UNUSED(p_e); |
|---|
| | 56 | |
|---|
| 55 | 57 | assert( PL ); |
|---|
| 56 | 58 | var_SetBool( PL, "loop", loop ); |
|---|
| … | … | |
| 61 | 63 | libvlc_exception_t *p_e ) |
|---|
| 62 | 64 | { |
|---|
| | 65 | VLC_UNUSED(p_e); |
|---|
| | 66 | |
|---|
| 63 | 67 | int did_lock = 0; |
|---|
| 64 | 68 | assert( PL ); |
|---|
| … | … | |
| 125 | 129 | libvlc_exception_t *p_e ) |
|---|
| 126 | 130 | { |
|---|
| | 131 | VLC_UNUSED(p_e); |
|---|
| | 132 | |
|---|
| 127 | 133 | assert( PL ); |
|---|
| 128 | 134 | playlist_Clear( PL, playlist_was_locked( p_instance ) ); |
|---|
| … | … | |
| 188 | 194 | libvlc_exception_t *p_e ) |
|---|
| 189 | 195 | { |
|---|
| | 196 | VLC_UNUSED(p_e); |
|---|
| | 197 | |
|---|
| 190 | 198 | assert( PL ); |
|---|
| 191 | 199 | return playlist_IsPlaying( PL ); |
|---|
| … | … | |
| 195 | 203 | libvlc_exception_t *p_e ) |
|---|
| 196 | 204 | { |
|---|
| | 205 | VLC_UNUSED(p_e); |
|---|
| | 206 | |
|---|
| 197 | 207 | assert( PL ); |
|---|
| 198 | 208 | return playlist_CurrentSize( PL ); |
|---|