Changeset 60a6411034db029a61b2c8cdc1d2a201143f2200
- Timestamp:
- 21/02/08 16:09:23
(10 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1203606563 +0000
- git-parent:
[c5f4e7f8fe242dad0ca58c3706b228c63a617da4]
- git-author:
- Rémi Duraffort <ivoire@videolan.org> 1203606563 +0000
- Message:
Comments to make doxygen happy
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rac05a69 |
r60a6411 |
|
| 505 | 505 | |
|---|
| 506 | 506 | /** |
|---|
| | 507 | * Item to node |
|---|
| | 508 | * |
|---|
| 507 | 509 | * Transform an item to a node. Return the node in the category tree, or NULL |
|---|
| 508 | 510 | * if not found there |
|---|
| 509 | 511 | * This function must be entered without the playlist lock |
|---|
| | 512 | * \param p_playlist the playlist object |
|---|
| | 513 | * \param p_item the item to transform |
|---|
| | 514 | * \param b_locked TRUE if the playlist is locked |
|---|
| | 515 | * \return the item transform in a node |
|---|
| 510 | 516 | */ |
|---|
| 511 | 517 | playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist, |
|---|
| … | … | |
| 577 | 583 | } |
|---|
| 578 | 584 | |
|---|
| 579 | | /** Find an item within a root, given its input id. |
|---|
| | 585 | /** |
|---|
| | 586 | * Find an item within a root, given its input id. |
|---|
| | 587 | * |
|---|
| | 588 | * \param p_playlist the playlist object |
|---|
| | 589 | * \param i_input_id id of the input |
|---|
| | 590 | * \param p_root root playlist item |
|---|
| | 591 | * \param b_items_only TRUE if we want the item himself |
|---|
| 580 | 592 | * \return the first found item, or NULL if not found |
|---|
| 581 | 593 | */ |
|---|
| … | … | |
| 689 | 701 | } |
|---|
| 690 | 702 | |
|---|
| 691 | | /** Send a notification that an item has been added to a node */ |
|---|
| | 703 | /** |
|---|
| | 704 | * Send notification |
|---|
| | 705 | * |
|---|
| | 706 | * Send a notification that an item has been added to a node |
|---|
| | 707 | * \param p_playlist the playlist object |
|---|
| | 708 | * \param i_item_id id of the item added |
|---|
| | 709 | * \param i_node_id id of the node in wich the item was added |
|---|
| | 710 | * \param b_signal TRUE if the function must send a signal |
|---|
| | 711 | * \return nothing |
|---|
| | 712 | */ |
|---|
| 692 | 713 | void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id, |
|---|
| 693 | 714 | int i_node_id, vlc_bool_t b_signal ) |
|---|
| 694 | 715 | { |
|---|
| 695 | 716 | vlc_value_t val; |
|---|
| 696 | | playlist_add_t *p_add = (playlist_add_t *)malloc(sizeof( playlist_add_t)); |
|---|
| | 717 | playlist_add_t *p_add = (playlist_add_t *)malloc( sizeof( playlist_add_t) ); |
|---|
| 697 | 718 | p_add->i_item = i_item_id; |
|---|
| 698 | 719 | p_add->i_node = i_node_id; |
|---|
| … | … | |
| 709 | 730 | *****************************************************************************/ |
|---|
| 710 | 731 | |
|---|
| 711 | | /** Set the name of a playlist item */ |
|---|
| | 732 | /** |
|---|
| | 733 | * Set the name of a playlist item |
|---|
| | 734 | * |
|---|
| | 735 | * \param p_item the item |
|---|
| | 736 | * \param psz_name the name |
|---|
| | 737 | * \return VLC_SUCCESS or VLC_EGENERIC |
|---|
| | 738 | */ |
|---|
| 712 | 739 | int playlist_ItemSetName( playlist_item_t *p_item, const char *psz_name ) |
|---|
| 713 | 740 | { |
|---|