]> git.sesse.net Git - vlc/blob - src/playlist/engine.c
playlist: use playlist audio functions
[vlc] / src / playlist / engine.c
1 /*****************************************************************************
2  * engine.c : Run the playlist and handle its control
3  *****************************************************************************
4  * Copyright (C) 1999-2008 VLC authors and VideoLAN
5  *
6  * Authors: Samuel Hocevar <sam@zoy.org>
7  *          ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <stddef.h>
29 #include <assert.h>
30 #include <vlc_common.h>
31 #include <vlc_sout.h>
32 #include <vlc_playlist.h>
33 #include <vlc_interface.h>
34 #include "playlist_internal.h"
35 #include "stream_output/stream_output.h" /* sout_DeleteInstance */
36 #include <math.h> /* for fabs() */
37
38 /*****************************************************************************
39  * Local prototypes
40  *****************************************************************************/
41 static void VariablesInit( playlist_t *p_playlist );
42
43 static int RandomCallback( vlc_object_t *p_this, char const *psz_cmd,
44                            vlc_value_t oldval, vlc_value_t newval, void *a )
45 {
46     (void)psz_cmd; (void)oldval; (void)newval; (void)a;
47     playlist_t *p_playlist = (playlist_t*)p_this;
48     bool random = newval.b_bool;
49
50     PL_LOCK;
51
52     if( !random ) {
53         pl_priv(p_playlist)->b_reset_currently_playing = true;
54         vlc_cond_signal( &pl_priv(p_playlist)->signal );
55     } else {
56         /* Shuffle and sync the playlist on activation of random mode.
57          * This preserves the current playing item, so that the user
58          * can return to it if needed. (See #4472)
59          */
60         playlist_private_t *p_sys = pl_priv(p_playlist);
61         playlist_item_t *p_new = p_sys->status.p_item;
62         ResetCurrentlyPlaying( p_playlist, NULL );
63         if( p_new )
64             ResyncCurrentIndex( p_playlist, p_new );
65     }
66
67     PL_UNLOCK;
68     return VLC_SUCCESS;
69 }
70
71 /**
72  * When there are one or more pending corks, playback should be paused.
73  * This is used for audio policy.
74  * \warning Always add and remove a cork with var_IncInteger() and var_DecInteger().
75  * var_Get() and var_Set() are prone to race conditions.
76  */
77 static int CorksCallback( vlc_object_t *obj, char const *var,
78                           vlc_value_t old, vlc_value_t cur, void *dummy )
79 {
80     playlist_t *pl = (playlist_t *)obj;
81
82     msg_Dbg( obj, "corks count: %"PRId64" -> %"PRId64, old.i_int, cur.i_int );
83     if( !old.i_int == !cur.i_int )
84         return VLC_SUCCESS; /* nothing to do */
85
86     if( cur.i_int )
87     {
88         if( var_InheritBool( obj, "playlist-cork" ) )
89         {
90             msg_Dbg( obj, "corked" );
91             playlist_Pause( pl );
92         }
93         else
94             msg_Dbg( obj, "not corked" );
95     }
96     else
97         msg_Dbg( obj, "uncorked" );
98
99     (void) var; (void) dummy;
100     return VLC_SUCCESS;
101 }
102
103 static int RateCallback( vlc_object_t *p_this, char const *psz_cmd,
104                          vlc_value_t oldval, vlc_value_t newval, void *p )
105 {
106     (void)psz_cmd; (void)oldval;(void)p;
107     playlist_t *p_playlist = (playlist_t*)p_this;
108
109     PL_LOCK;
110
111     if( pl_priv(p_playlist)->p_input == NULL )
112     {
113         PL_UNLOCK;
114         return VLC_SUCCESS;
115     }
116
117     var_SetFloat( pl_priv( p_playlist )->p_input, "rate", newval.f_float );
118     PL_UNLOCK;
119     return VLC_SUCCESS;
120 }
121
122 static int RateOffsetCallback( vlc_object_t *obj, char const *psz_cmd,
123                                vlc_value_t oldval, vlc_value_t newval, void *p_data )
124 {
125     playlist_t *p_playlist = (playlist_t *)obj;
126     VLC_UNUSED(oldval); VLC_UNUSED(p_data); VLC_UNUSED(newval);
127
128     static const float pf_rate[] = {
129         1.0/64, 1.0/32, 1.0/16, 1.0/8, 1.0/4, 1.0/3, 1.0/2, 2.0/3,
130         1.0/1,
131         3.0/2, 2.0/1, 3.0/1, 4.0/1, 8.0/1, 16.0/1, 32.0/1, 64.0/1,
132     };
133     const size_t i_rate_count = sizeof(pf_rate)/sizeof(*pf_rate);
134
135     float f_rate;
136     struct input_thread_t *input;
137
138     PL_LOCK;
139     input = pl_priv( p_playlist )->p_input;
140     f_rate = var_GetFloat( input ? (vlc_object_t *)input : obj, "rate" );
141     PL_UNLOCK;
142
143     if( !strcmp( psz_cmd, "rate-faster" ) )
144     {
145         /* compensate for input rounding errors */
146         float r = f_rate * 1.1;
147         for( size_t i = 0; i < i_rate_count; i++ )
148             if( r < pf_rate[i] )
149             {
150                 f_rate = pf_rate[i];
151                 break;
152             }
153     }
154     else
155     {
156         /* compensate for input rounding errors */
157         float r = f_rate * .9;
158         for( size_t i = 1; i < i_rate_count; i++ )
159             if( r <= pf_rate[i] )
160             {
161                 f_rate = pf_rate[i - 1];
162                 break;
163             }
164     }
165
166     var_SetFloat( p_playlist, "rate", f_rate );
167     return VLC_SUCCESS;
168 }
169
170 static int VideoSplitterCallback( vlc_object_t *p_this, char const *psz_cmd,
171                                   vlc_value_t oldval, vlc_value_t newval, void *p_data )
172 {
173     playlist_t *p_playlist = (playlist_t*)p_this;
174     VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data); VLC_UNUSED(newval);
175
176     PL_LOCK;
177
178     /* Force the input to restart the video ES to force a vout recreation */
179     input_thread_t *p_input = pl_priv( p_playlist )->p_input;
180     if( p_input )
181     {
182         const double f_position = var_GetFloat( p_input, "position" );
183         input_Control( p_input, INPUT_RESTART_ES, -VIDEO_ES );
184         var_SetFloat( p_input, "position", f_position );
185     }
186
187     PL_UNLOCK;
188     return VLC_SUCCESS;
189 }
190
191 /**
192  * Create playlist
193  *
194  * Create a playlist structure.
195  * \param p_parent the vlc object that is to be the parent of this playlist
196  * \return a pointer to the created playlist, or NULL on error
197  */
198 playlist_t * playlist_Create( vlc_object_t *p_parent )
199 {
200     playlist_t *p_playlist;
201     playlist_private_t *p;
202
203     /* Allocate structure */
204     p = vlc_custom_create( p_parent, sizeof( *p ), "playlist" );
205     if( !p )
206         return NULL;
207
208     assert( offsetof( playlist_private_t, public_data ) == 0 );
209     p_playlist = &p->public_data;
210     TAB_INIT( pl_priv(p_playlist)->i_sds, pl_priv(p_playlist)->pp_sds );
211
212     libvlc_priv(p_parent->p_libvlc)->p_playlist = p_playlist;
213
214     VariablesInit( p_playlist );
215     vlc_mutex_init( &p->lock );
216     vlc_cond_init( &p->signal );
217     p->killed = false;
218
219     /* Initialise data structures */
220     pl_priv(p_playlist)->i_last_playlist_id = 0;
221     pl_priv(p_playlist)->p_input = NULL;
222
223     ARRAY_INIT( p_playlist->items );
224     ARRAY_INIT( p_playlist->all_items );
225     ARRAY_INIT( pl_priv(p_playlist)->items_to_delete );
226     ARRAY_INIT( p_playlist->current );
227
228     p_playlist->i_current_index = 0;
229     pl_priv(p_playlist)->b_reset_currently_playing = true;
230     pl_priv(p_playlist)->last_rebuild_date = 0;
231
232     pl_priv(p_playlist)->b_tree = var_InheritBool( p_parent, "playlist-tree" );
233
234     pl_priv(p_playlist)->b_doing_ml = false;
235
236     pl_priv(p_playlist)->b_auto_preparse =
237         var_InheritBool( p_parent, "auto-preparse" );
238
239     /* Fetcher */
240     p->p_fetcher = playlist_fetcher_New( VLC_OBJECT(p_playlist) );
241     if( unlikely(p->p_fetcher == NULL) )
242         msg_Err( p_playlist, "cannot create fetcher" );
243    /* Preparser */
244    p->p_preparser = playlist_preparser_New( VLC_OBJECT(p_playlist),
245                                             p->p_fetcher );
246    if( unlikely(p->p_preparser == NULL) )
247        msg_Err( p_playlist, "cannot create preparser" );
248
249     /* Create the root node */
250     PL_LOCK;
251     p_playlist->p_root = playlist_NodeCreate( p_playlist, NULL, NULL,
252                                     PLAYLIST_END, 0, NULL );
253     PL_UNLOCK;
254     if( !p_playlist->p_root ) return NULL;
255
256     /* Create currently playing items node */
257     PL_LOCK;
258     p_playlist->p_playing = playlist_NodeCreate(
259         p_playlist, _( "Playlist" ), p_playlist->p_root,
260         PLAYLIST_END, PLAYLIST_RO_FLAG, NULL );
261
262     PL_UNLOCK;
263
264     if( !p_playlist->p_playing ) return NULL;
265
266     /* Create media library node */
267     const bool b_ml = var_InheritBool( p_parent, "media-library");
268     if( b_ml )
269     {
270         PL_LOCK;
271         p_playlist->p_media_library = playlist_NodeCreate(
272             p_playlist, _( "Media Library" ), p_playlist->p_root,
273             PLAYLIST_END, PLAYLIST_RO_FLAG, NULL );
274         PL_UNLOCK;
275
276         if(!p_playlist->p_media_library ) return NULL;
277     }
278     else
279     {
280         p_playlist->p_media_library = NULL;
281     }
282
283     p_playlist->p_root_category = p_playlist->p_root;
284     p_playlist->p_root_onelevel = p_playlist->p_root;
285     p_playlist->p_local_category = p_playlist->p_playing;
286     p_playlist->p_local_onelevel = p_playlist->p_playing;
287     p_playlist->p_ml_category = p_playlist->p_media_library;
288     p_playlist->p_ml_onelevel = p_playlist->p_media_library;;
289
290     /* Initial status */
291     pl_priv(p_playlist)->status.p_item = NULL;
292     pl_priv(p_playlist)->status.p_node = p_playlist->p_playing;
293     pl_priv(p_playlist)->request.b_request = false;
294     pl_priv(p_playlist)->status.i_status = PLAYLIST_STOPPED;
295
296     if(b_ml)
297     {
298         const bool b_auto_preparse = pl_priv(p_playlist)->b_auto_preparse;
299         pl_priv(p_playlist)->b_auto_preparse = false;
300         playlist_MLLoad( p_playlist );
301         pl_priv(p_playlist)->b_auto_preparse = b_auto_preparse;
302     }
303
304     return p_playlist;
305 }
306
307 /**
308  * Destroy playlist.
309  * This is not thread-safe. Any reference to the playlist is assumed gone.
310  * (In particular, all interface and services threads must have been joined).
311  *
312  * \param p_playlist the playlist object
313  */
314 void playlist_Destroy( playlist_t *p_playlist )
315 {
316     playlist_private_t *p_sys = pl_priv(p_playlist);
317
318     msg_Dbg( p_playlist, "destroying" );
319     if( p_sys->p_preparser )
320         playlist_preparser_Delete( p_sys->p_preparser );
321     if( p_sys->p_fetcher )
322         playlist_fetcher_Delete( p_sys->p_fetcher );
323
324     /* Already cleared when deactivating (if activated anyway) */
325     assert( !p_sys->p_input );
326
327     vlc_cond_destroy( &p_sys->signal );
328     vlc_mutex_destroy( &p_sys->lock );
329
330     /* Remove all remaining items */
331     FOREACH_ARRAY( playlist_item_t *p_del, p_playlist->all_items )
332         free( p_del->pp_children );
333         vlc_gc_decref( p_del->p_input );
334         free( p_del );
335     FOREACH_END();
336     ARRAY_RESET( p_playlist->all_items );
337     FOREACH_ARRAY( playlist_item_t *p_del, p_sys->items_to_delete )
338         free( p_del->pp_children );
339         vlc_gc_decref( p_del->p_input );
340         free( p_del );
341     FOREACH_END();
342     ARRAY_RESET( p_sys->items_to_delete );
343
344     ARRAY_RESET( p_playlist->items );
345     ARRAY_RESET( p_playlist->current );
346
347     vlc_object_release( p_playlist );
348 }
349
350 /** Get current playing input.
351  */
352 input_thread_t * playlist_CurrentInput( playlist_t * p_playlist )
353 {
354     input_thread_t * p_input;
355     PL_LOCK;
356     p_input = pl_priv(p_playlist)->p_input;
357     if( p_input ) vlc_object_hold( p_input );
358     PL_UNLOCK;
359     return p_input;
360 }
361
362 /**
363  * @}
364  */
365
366 /** Accessor for status item and status nodes.
367  */
368 playlist_item_t * get_current_status_item( playlist_t * p_playlist )
369 {
370     PL_ASSERT_LOCKED;
371
372     return pl_priv(p_playlist)->status.p_item;
373 }
374
375 playlist_item_t * get_current_status_node( playlist_t * p_playlist )
376 {
377     PL_ASSERT_LOCKED;
378
379     return pl_priv(p_playlist)->status.p_node;
380 }
381
382 void set_current_status_item( playlist_t * p_playlist,
383     playlist_item_t * p_item )
384 {
385     PL_ASSERT_LOCKED;
386
387     if( pl_priv(p_playlist)->status.p_item &&
388         pl_priv(p_playlist)->status.p_item->i_flags & PLAYLIST_REMOVE_FLAG &&
389         pl_priv(p_playlist)->status.p_item != p_item )
390     {
391         /* It's unsafe given current design to delete a playlist item :(
392         playlist_ItemDelete( pl_priv(p_playlist)->status.p_item ); */
393     }
394     pl_priv(p_playlist)->status.p_item = p_item;
395 }
396
397 void set_current_status_node( playlist_t * p_playlist,
398     playlist_item_t * p_node )
399 {
400     PL_ASSERT_LOCKED;
401
402     if( pl_priv(p_playlist)->status.p_node &&
403         pl_priv(p_playlist)->status.p_node->i_flags & PLAYLIST_REMOVE_FLAG &&
404         pl_priv(p_playlist)->status.p_node != p_node )
405     {
406         /* It's unsafe given current design to delete a playlist item :(
407         playlist_ItemDelete( pl_priv(p_playlist)->status.p_node ); */
408     }
409     pl_priv(p_playlist)->status.p_node = p_node;
410 }
411
412 static void VariablesInit( playlist_t *p_playlist )
413 {
414     /* These variables control updates */
415     var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
416     var_SetBool( p_playlist, "intf-change", true );
417
418     var_Create( p_playlist, "item-change", VLC_VAR_ADDRESS );
419     var_Create( p_playlist, "leaf-to-parent", VLC_VAR_INTEGER );
420
421     var_Create( p_playlist, "playlist-item-deleted", VLC_VAR_INTEGER );
422     var_SetInteger( p_playlist, "playlist-item-deleted", -1 );
423
424     var_Create( p_playlist, "playlist-item-append", VLC_VAR_ADDRESS );
425
426     var_Create( p_playlist, "item-current", VLC_VAR_ADDRESS );
427     var_Create( p_playlist, "input-current", VLC_VAR_ADDRESS );
428
429     var_Create( p_playlist, "activity", VLC_VAR_INTEGER );
430     var_SetInteger( p_playlist, "activity", 0 );
431
432     /* Variables to control playback */
433     var_Create( p_playlist, "playlist-autostart", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
434     var_Create( p_playlist, "play-and-stop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
435     var_Create( p_playlist, "play-and-exit", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
436     var_Create( p_playlist, "random", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
437     var_AddCallback( p_playlist, "random", RandomCallback, NULL );
438     var_Create( p_playlist, "repeat", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
439     var_Create( p_playlist, "loop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
440     var_Create( p_playlist, "corks", VLC_VAR_INTEGER );
441     var_AddCallback( p_playlist, "corks", CorksCallback, NULL );
442
443     var_Create( p_playlist, "rate", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
444     var_AddCallback( p_playlist, "rate", RateCallback, NULL );
445     var_Create( p_playlist, "rate-slower", VLC_VAR_VOID );
446     var_AddCallback( p_playlist, "rate-slower", RateOffsetCallback, NULL );
447     var_Create( p_playlist, "rate-faster", VLC_VAR_VOID );
448     var_AddCallback( p_playlist, "rate-faster", RateOffsetCallback, NULL );
449
450     var_Create( p_playlist, "video-splitter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
451     var_AddCallback( p_playlist, "video-splitter", VideoSplitterCallback, NULL );
452
453     /* */
454     var_Create( p_playlist, "album-art", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
455
456     /* Variables to preserve video output parameters */
457     var_Create( p_playlist, "fullscreen", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
458     var_Create( p_playlist, "video-on-top", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
459
460     /* Audio output parameters */
461     var_Create( p_playlist, "mute", VLC_VAR_BOOL );
462     var_Create( p_playlist, "volume", VLC_VAR_FLOAT );
463     var_SetFloat( p_playlist, "volume", -1.f );
464 }
465
466 playlist_item_t * playlist_CurrentPlayingItem( playlist_t * p_playlist )
467 {
468     PL_ASSERT_LOCKED;
469
470     return pl_priv(p_playlist)->status.p_item;
471 }
472
473 int playlist_Status( playlist_t * p_playlist )
474 {
475     PL_ASSERT_LOCKED;
476
477     return pl_priv(p_playlist)->status.i_status;
478 }
479