Changeset 025d0a239f580936ee53685119daebbc9a09ed13
- Timestamp:
- 29/06/08 14:34:55
(4 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1214742895 +0200
- git-parent:
[229c8f90e7c004f641140ff50f30ad0716ffa18e]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1214742895 +0200
- Message:
failing test for libvlc_media_list_player added
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6d6185f |
r025d0a2 |
|
| 70 | 70 | } |
|---|
| 71 | 71 | |
|---|
| | 72 | static void test_media_list_player_play_item_at_index(const char** argv, int argc) |
|---|
| | 73 | { |
|---|
| | 74 | libvlc_instance_t *vlc; |
|---|
| | 75 | libvlc_media_t *md; |
|---|
| | 76 | libvlc_media_list_t *ml; |
|---|
| | 77 | libvlc_media_list_player_t *mlp; |
|---|
| | 78 | |
|---|
| | 79 | const char * file = test_default_sample; |
|---|
| | 80 | |
|---|
| | 81 | log ("Testing play and pause of %s using the media list.\n", file); |
|---|
| | 82 | |
|---|
| | 83 | libvlc_exception_init (&ex); |
|---|
| | 84 | vlc = libvlc_new (argc, argv, &ex); |
|---|
| | 85 | catch (); |
|---|
| | 86 | |
|---|
| | 87 | md = libvlc_media_new (vlc, file, &ex); |
|---|
| | 88 | catch (); |
|---|
| | 89 | |
|---|
| | 90 | ml = libvlc_media_list_new (vlc, &ex); |
|---|
| | 91 | catch (); |
|---|
| | 92 | |
|---|
| | 93 | mlp = libvlc_media_list_player_new (vlc, &ex); |
|---|
| | 94 | |
|---|
| | 95 | libvlc_media_list_add_media( ml, md, &ex ); |
|---|
| | 96 | catch (); |
|---|
| | 97 | |
|---|
| | 98 | libvlc_media_list_player_set_media_list( mlp, ml, &ex ); |
|---|
| | 99 | |
|---|
| | 100 | libvlc_media_list_player_play_item_at_index( mlp, 0, &ex ); |
|---|
| | 101 | catch (); |
|---|
| | 102 | |
|---|
| | 103 | libvlc_media_list_player_stop (mlp, &ex); |
|---|
| | 104 | catch (); |
|---|
| | 105 | |
|---|
| | 106 | libvlc_media_release (md); |
|---|
| | 107 | catch (); |
|---|
| | 108 | |
|---|
| | 109 | libvlc_media_list_player_release (mlp); |
|---|
| | 110 | catch (); |
|---|
| | 111 | |
|---|
| | 112 | libvlc_release (vlc); |
|---|
| | 113 | catch (); |
|---|
| | 114 | } |
|---|
| | 115 | |
|---|
| 72 | 116 | |
|---|
| 73 | 117 | int main (void) |
|---|
| … | … | |
| 76 | 120 | |
|---|
| 77 | 121 | test_media_list_player_pause_stop (test_defaults_args, test_defaults_nargs); |
|---|
| 78 | | |
|---|
| | 122 | test_media_list_player_play_item_at_index (test_defaults_args, test_defaults_nargs); |
|---|
| 79 | 123 | return 0; |
|---|
| 80 | 124 | } |
|---|