]> git.sesse.net Git - vlc/blob - src/input/es_out_timeshift.c
Factorize some msg_Dbg about timeshift
[vlc] / src / input / es_out_timeshift.c
1 /*****************************************************************************
2  * es_out_timeshift.c: Es Out timeshift.
3  *****************************************************************************
4  * Copyright (C) 2008 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include <assert.h>
34 #if defined (WIN32) && !defined (UNDER_CE)
35 #  include <direct.h>
36 #endif
37 #ifdef HAVE_SYS_STAT_H
38 #   include <sys/stat.h>
39 #endif
40
41 #include <vlc_common.h>
42 #include <vlc_fs.h>
43 #ifdef WIN32
44 #  include <vlc_charset.h>
45 #endif
46 #include <vlc_input.h>
47 #include <vlc_es_out.h>
48 #include <vlc_block.h>
49 #include "input_internal.h"
50 #include "es_out.h"
51 #include "es_out_timeshift.h"
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56
57 /* XXX attribute_packed is (and MUST be) used ONLY to reduce memory usage */
58 #ifdef HAVE_ATTRIBUTE_PACKED
59 #   define attribute_packed __attribute__((__packed__))
60 #else
61 #   define attribute_packed
62 #endif
63
64 enum
65 {
66     C_ADD,
67     C_SEND,
68     C_DEL,
69     C_CONTROL,
70 };
71
72 typedef struct attribute_packed
73 {
74     es_out_id_t *p_es;
75     es_format_t *p_fmt;
76 } ts_cmd_add_t;
77
78 typedef struct attribute_packed
79 {
80     es_out_id_t *p_es;
81 } ts_cmd_del_t;
82
83 typedef struct attribute_packed
84 {
85     es_out_id_t *p_es;
86     block_t *p_block;
87     int     i_offset;  /* We do not use file > INT_MAX */
88 } ts_cmd_send_t;
89
90 typedef struct attribute_packed
91 {
92     int  i_query;
93
94     union
95     {
96         bool b_bool;
97         int  i_int;
98         int64_t i_i64;
99         es_out_id_t *p_es;
100         struct
101         {
102             int     i_int;
103             int64_t i_i64;
104         } int_i64;
105         struct
106         {
107             int        i_int;
108             vlc_meta_t *p_meta;
109         } int_meta;
110         struct
111         {
112             int       i_int;
113             vlc_epg_t *p_epg;
114         } int_epg;
115         struct
116         {
117             es_out_id_t *p_es;
118             bool        b_bool;
119         } es_bool;
120         struct
121         {
122             es_out_id_t *p_es;
123             es_format_t *p_fmt;
124         } es_fmt;
125         struct
126         {
127             /* FIXME Really too big (double make the whole thing too big) */
128             double  f_position;
129             mtime_t i_time;
130             mtime_t i_length;
131         } times;
132         struct
133         {
134             mtime_t i_pts_delay;
135             mtime_t i_pts_jitter;
136             int     i_cr_average;
137         } jitter;
138     } u;
139 } ts_cmd_control_t;
140
141 typedef struct attribute_packed
142 {
143     int8_t  i_type;
144     mtime_t i_date;
145     union
146     {
147         ts_cmd_add_t     add;
148         ts_cmd_del_t     del;
149         ts_cmd_send_t    send;
150         ts_cmd_control_t control;
151     } u;
152 } ts_cmd_t;
153
154 typedef struct ts_storage_t ts_storage_t;
155 struct ts_storage_t
156 {
157     ts_storage_t *p_next;
158
159     /* */
160     char    *psz_file;  /* Filename */
161     size_t  i_file_max; /* Max size in bytes */
162     int64_t i_file_size;/* Current size in bytes */
163     FILE    *p_filew;   /* FILE handle for data writing */
164     FILE    *p_filer;   /* FILE handle for data reading */
165
166     /* */
167     int      i_cmd_r;
168     int      i_cmd_w;
169     int      i_cmd_max;
170     ts_cmd_t *p_cmd;
171 };
172
173 typedef struct
174 {
175     VLC_COMMON_MEMBERS
176
177     /* */
178     input_thread_t *p_input;
179     es_out_t       *p_out;
180     int64_t        i_tmp_size_max;
181     const char     *psz_tmp_path;
182
183     /* Lock for all following fields */
184     vlc_mutex_t    lock;
185     vlc_cond_t     wait;
186
187     /* */
188     bool           b_paused;
189     mtime_t        i_pause_date;
190
191     /* */
192     int            i_rate;
193     int            i_rate_source;
194     mtime_t        i_rate_date;
195     mtime_t        i_rate_delay;
196
197     /* */
198     mtime_t        i_buffering_delay;
199
200     /* */
201     ts_storage_t   *p_storage_r;
202     ts_storage_t   *p_storage_w;
203
204     mtime_t        i_cmd_delay;
205
206 } ts_thread_t;
207
208 struct es_out_id_t
209 {
210     es_out_id_t *p_es;
211 };
212
213 struct es_out_sys_t
214 {
215     input_thread_t *p_input;
216         es_out_t       *p_out;
217
218     /* Configuration */
219     int64_t        i_tmp_size_max;    /* Maximal temporary file size in byte */
220     char           *psz_tmp_path;     /* Path for temporary files */
221
222     /* Lock for all following fields */
223     vlc_mutex_t    lock;
224
225     /* */
226     bool           b_delayed;
227     ts_thread_t   *p_thread;
228
229     /* */
230     bool           b_input_paused;
231     bool           b_input_paused_source;
232     int            i_input_rate;
233     int            i_input_rate_source;
234
235     /* */
236     int            i_es;
237     es_out_id_t    **pp_es;
238 };
239
240 static es_out_id_t *Add    ( es_out_t *, const es_format_t * );
241 static int          Send   ( es_out_t *, es_out_id_t *, block_t * );
242 static void         Del    ( es_out_t *, es_out_id_t * );
243 static int          Control( es_out_t *, int i_query, va_list );
244 static void         Destroy( es_out_t * );
245
246 static int          TsStart( es_out_t * );
247 static void         TsAutoStop( es_out_t * );
248
249 static void         TsStop( ts_thread_t * );
250 static void         TsPushCmd( ts_thread_t *, ts_cmd_t * );
251 static int          TsPopCmdLocked( ts_thread_t *, ts_cmd_t *, bool b_flush );
252 static bool         TsHasCmd( ts_thread_t * );
253 static bool         TsIsUnused( ts_thread_t * );
254 static int          TsChangePause( ts_thread_t *, bool b_source_paused, bool b_paused, mtime_t i_date );
255 static int          TsChangeRate( ts_thread_t *, int i_src_rate, int i_rate );
256
257 static void         *TsRun( vlc_object_t * );
258
259 static ts_storage_t *TsStorageNew( const char *psz_path, int64_t i_tmp_size_max );
260 static void         TsStorageDelete( ts_storage_t * );
261 static void         TsStoragePack( ts_storage_t *p_storage );
262 static bool         TsStorageIsFull( ts_storage_t *, const ts_cmd_t *p_cmd );
263 static bool         TsStorageIsEmpty( ts_storage_t * );
264 static void         TsStoragePushCmd( ts_storage_t *, const ts_cmd_t *p_cmd, bool b_flush );
265 static void         TsStoragePopCmd( ts_storage_t *p_storage, ts_cmd_t *p_cmd, bool b_flush );
266
267 static void CmdClean( ts_cmd_t * );
268 static void cmd_cleanup_routine( void *p ) { CmdClean( p ); }
269
270 static int  CmdInitAdd    ( ts_cmd_t *, es_out_id_t *, const es_format_t *, bool b_copy );
271 static void CmdInitSend   ( ts_cmd_t *, es_out_id_t *, block_t * );
272 static int  CmdInitDel    ( ts_cmd_t *, es_out_id_t * );
273 static int  CmdInitControl( ts_cmd_t *, int i_query, va_list, bool b_copy );
274
275 /* */
276 static void CmdCleanAdd    ( ts_cmd_t * );
277 static void CmdCleanSend   ( ts_cmd_t * );
278 static void CmdCleanControl( ts_cmd_t *p_cmd );
279
280 /* XXX these functions will take the destination es_out_t */
281 static void CmdExecuteAdd    ( es_out_t *, ts_cmd_t * );
282 static int  CmdExecuteSend   ( es_out_t *, ts_cmd_t * );
283 static void CmdExecuteDel    ( es_out_t *, ts_cmd_t * );
284 static int  CmdExecuteControl( es_out_t *, ts_cmd_t * );
285
286 /* File helpers */
287 static char *GetTmpPath( char *psz_path );
288 static FILE *GetTmpFile( char **ppsz_file, const char *psz_path );
289
290 /*****************************************************************************
291  * input_EsOutTimeshiftNew:
292  *****************************************************************************/
293 es_out_t *input_EsOutTimeshiftNew( input_thread_t *p_input, es_out_t *p_next_out, int i_rate )
294 {
295     es_out_t *p_out = malloc( sizeof(*p_out) );
296     if( !p_out )
297         return NULL;
298
299     es_out_sys_t *p_sys = malloc( sizeof(*p_sys) );
300     if( !p_sys )
301     {
302         free( p_out );
303         return NULL;
304     }
305
306     /* */
307     p_out->pf_add     = Add;
308     p_out->pf_send    = Send;
309     p_out->pf_del     = Del;
310     p_out->pf_control = Control;
311     p_out->pf_destroy = Destroy;
312     p_out->p_sys      = p_sys;
313
314     /* */
315     p_sys->b_input_paused = false;
316     p_sys->b_input_paused_source = false;
317     p_sys->p_input = p_input;
318     p_sys->i_input_rate = i_rate;
319     p_sys->i_input_rate_source = i_rate;
320
321     p_sys->p_out = p_next_out;
322     vlc_mutex_init_recursive( &p_sys->lock );
323
324     p_sys->b_delayed = false;
325     p_sys->p_thread = NULL;
326
327     TAB_INIT( p_sys->i_es, p_sys->pp_es );
328
329     /* */
330     const int i_tmp_size_max = var_CreateGetInteger( p_input, "input-timeshift-granularity" );
331     if( i_tmp_size_max < 0 )
332         p_sys->i_tmp_size_max = 50*1024*1024;
333     else
334         p_sys->i_tmp_size_max = __MAX( i_tmp_size_max, 1*1024*1024 );
335
336     char *psz_tmp_path = var_CreateGetNonEmptyString( p_input, "input-timeshift-path" );
337     p_sys->psz_tmp_path = GetTmpPath( psz_tmp_path );
338
339     msg_Dbg( p_input, "using timeshift granularity of %d MiB, in path '%s'",
340              (int)p_sys->i_tmp_size_max/(1024*1024), p_sys->psz_tmp_path );
341
342 #if 0
343 #define S(t) msg_Err( p_input, "SIZEOF("#t")=%d", sizeof(t) )
344     S(ts_cmd_t);
345     S(ts_cmd_control_t);
346     S(ts_cmd_send_t);
347     S(ts_cmd_del_t);
348     S(ts_cmd_add_t);
349 #undef S
350 #endif
351
352     return p_out;
353 }
354
355 /*****************************************************************************
356  * Internal functions
357  *****************************************************************************/
358 static void Destroy( es_out_t *p_out )
359 {
360     es_out_sys_t *p_sys = p_out->p_sys;
361
362     if( p_sys->b_delayed )
363     {
364         TsStop( p_sys->p_thread );
365         p_sys->b_delayed = false;
366     }
367
368     while( p_sys->i_es > 0 )
369         Del( p_out, p_sys->pp_es[0] );
370     TAB_CLEAN( p_sys->i_es, p_sys->pp_es  );
371
372     free( p_sys->psz_tmp_path );
373     vlc_mutex_destroy( &p_sys->lock );
374     free( p_sys );
375     free( p_out );
376 }
377
378 static es_out_id_t *Add( es_out_t *p_out, const es_format_t *p_fmt )
379 {
380     es_out_sys_t *p_sys = p_out->p_sys;
381     ts_cmd_t cmd;
382
383     es_out_id_t *p_es = malloc( sizeof( *p_es ) );
384     if( !p_es )
385         return NULL;
386
387     vlc_mutex_lock( &p_sys->lock );
388
389     TsAutoStop( p_out );
390
391     if( CmdInitAdd( &cmd, p_es, p_fmt, p_sys->b_delayed ) )
392     {
393         vlc_mutex_unlock( &p_sys->lock );
394         free( p_es );
395         return NULL;
396     }
397
398     TAB_APPEND( p_sys->i_es, p_sys->pp_es, p_es );
399
400     if( p_sys->b_delayed )
401         TsPushCmd( p_sys->p_thread, &cmd );
402     else
403         CmdExecuteAdd( p_sys->p_out, &cmd );
404
405     vlc_mutex_unlock( &p_sys->lock );
406
407     return p_es;
408 }
409 static int Send( es_out_t *p_out, es_out_id_t *p_es, block_t *p_block )
410 {
411     es_out_sys_t *p_sys = p_out->p_sys;
412     ts_cmd_t cmd;
413     int i_ret = VLC_SUCCESS;
414
415     vlc_mutex_lock( &p_sys->lock );
416
417     TsAutoStop( p_out );
418
419     CmdInitSend( &cmd, p_es, p_block );
420     if( p_sys->b_delayed )
421         TsPushCmd( p_sys->p_thread, &cmd );
422     else
423         i_ret = CmdExecuteSend( p_sys->p_out, &cmd) ;
424
425     vlc_mutex_unlock( &p_sys->lock );
426
427     return i_ret;
428 }
429 static void Del( es_out_t *p_out, es_out_id_t *p_es )
430 {
431     es_out_sys_t *p_sys = p_out->p_sys;
432     ts_cmd_t cmd;
433
434     vlc_mutex_lock( &p_sys->lock );
435
436     TsAutoStop( p_out );
437
438     CmdInitDel( &cmd, p_es );
439     if( p_sys->b_delayed )
440         TsPushCmd( p_sys->p_thread, &cmd );
441     else
442         CmdExecuteDel( p_sys->p_out, &cmd );
443
444     TAB_REMOVE( p_sys->i_es, p_sys->pp_es, p_es );
445
446     vlc_mutex_unlock( &p_sys->lock );
447 }
448
449 static int ControlLockedGetEmpty( es_out_t *p_out, bool *pb_empty )
450 {
451     es_out_sys_t *p_sys = p_out->p_sys;
452
453     if( p_sys->b_delayed && TsHasCmd( p_sys->p_thread ) )
454         *pb_empty = false;
455     else
456         *pb_empty = es_out_GetEmpty( p_sys->p_out );
457
458     return VLC_SUCCESS;
459 }
460 static int ControlLockedGetWakeup( es_out_t *p_out, mtime_t *pi_wakeup )
461 {
462     es_out_sys_t *p_sys = p_out->p_sys;
463
464     if( p_sys->b_delayed )
465     {
466         assert( !p_sys->p_input->p->b_can_pace_control );
467         *pi_wakeup = 0;
468     }
469     else
470     {
471         *pi_wakeup = es_out_GetWakeup( p_sys->p_out );
472     }
473
474     return VLC_SUCCESS;
475 }
476 static int ControlLockedGetBuffering( es_out_t *p_out, bool *pb_buffering )
477 {
478     es_out_sys_t *p_sys = p_out->p_sys;
479
480     if( p_sys->b_delayed )
481         *pb_buffering = true;
482     else
483         *pb_buffering = es_out_GetBuffering( p_sys->p_out );
484
485     return VLC_SUCCESS;
486 }
487 static int ControlLockedSetPauseState( es_out_t *p_out, bool b_source_paused, bool b_paused, mtime_t i_date )
488 {
489     es_out_sys_t *p_sys = p_out->p_sys;
490     int i_ret;
491
492     if( !p_sys->b_delayed && !b_source_paused == !b_paused )
493     {
494         i_ret = es_out_SetPauseState( p_sys->p_out, b_source_paused, b_paused, i_date );
495     }
496     else
497     {
498         i_ret = VLC_EGENERIC;
499         if( !p_sys->p_input->p->b_can_pace_control )
500         {
501             if( !p_sys->b_delayed )
502                 TsStart( p_out );
503             if( p_sys->b_delayed )
504                 i_ret = TsChangePause( p_sys->p_thread, b_source_paused, b_paused, i_date );
505         }
506         else
507         {
508             /* XXX we may do it BUT it would be better to finish the clock clean up+improvments
509              * and so be able to advertize correctly pace control property in access
510              * module */
511             msg_Err( p_sys->p_input, "EsOutTimeshift does not work with streams that have pace control" );
512         }
513     }
514
515     if( !i_ret )
516     {
517         p_sys->b_input_paused_source = b_source_paused;
518         p_sys->b_input_paused = b_paused;
519     }
520     return i_ret;
521 }
522 static int ControlLockedSetRate( es_out_t *p_out, int i_src_rate, int i_rate )
523 {
524     es_out_sys_t *p_sys = p_out->p_sys;
525     int i_ret;
526
527     if( !p_sys->b_delayed && i_src_rate == i_rate )
528     {
529         i_ret = es_out_SetRate( p_sys->p_out, i_src_rate, i_rate );
530     }
531     else
532     {
533         i_ret = VLC_EGENERIC;
534         if( !p_sys->p_input->p->b_can_pace_control )
535         {
536             if( !p_sys->b_delayed )
537                 TsStart( p_out );
538             if( p_sys->b_delayed )
539                 i_ret = TsChangeRate( p_sys->p_thread, i_src_rate, i_rate );
540         }
541         else
542         {
543             /* XXX we may do it BUT it would be better to finish the clock clean up+improvments
544              * and so be able to advertize correctly pace control property in access
545              * module */
546             msg_Err( p_sys->p_input, "EsOutTimeshift does not work with streams that have pace control" );
547         }
548
549     }
550
551     if( !i_ret )
552     {
553         p_sys->i_input_rate_source = i_src_rate;
554         p_sys->i_input_rate = i_rate;
555     }
556     return i_ret;
557 }
558 static int ControlLockedSetTime( es_out_t *p_out, mtime_t i_date )
559 {
560     es_out_sys_t *p_sys = p_out->p_sys;
561
562     if( !p_sys->b_delayed )
563         return es_out_SetTime( p_sys->p_out, i_date );
564
565     /* TODO */
566     msg_Err( p_sys->p_input, "EsOutTimeshift does not yet support time change" );
567     return VLC_EGENERIC;
568 }
569 static int ControlLockedSetFrameNext( es_out_t *p_out )
570 {
571     es_out_sys_t *p_sys = p_out->p_sys;
572
573     return es_out_SetFrameNext( p_sys->p_out );
574 }
575
576 static int ControlLocked( es_out_t *p_out, int i_query, va_list args )
577 {
578     es_out_sys_t *p_sys = p_out->p_sys;
579
580     switch( i_query )
581     {
582     /* Invalid query for this es_out level */
583     case ES_OUT_SET_ES_BY_ID:
584     case ES_OUT_RESTART_ES_BY_ID:
585     case ES_OUT_SET_ES_DEFAULT_BY_ID:
586     case ES_OUT_GET_ES_OBJECTS_BY_ID:
587     case ES_OUT_SET_DELAY:
588     case ES_OUT_SET_RECORD_STATE:
589         assert(0);
590         return VLC_EGENERIC;
591
592     /* Pass-through control */
593     case ES_OUT_SET_MODE:
594     case ES_OUT_SET_GROUP:
595     case ES_OUT_SET_PCR:
596     case ES_OUT_SET_GROUP_PCR:
597     case ES_OUT_RESET_PCR:
598     case ES_OUT_SET_NEXT_DISPLAY_TIME:
599     case ES_OUT_SET_GROUP_META:
600     case ES_OUT_SET_GROUP_EPG:
601     case ES_OUT_SET_ES_SCRAMBLED_STATE:
602     case ES_OUT_DEL_GROUP:
603     case ES_OUT_SET_META:
604     case ES_OUT_SET_ES:
605     case ES_OUT_RESTART_ES:
606     case ES_OUT_SET_ES_DEFAULT:
607     case ES_OUT_SET_ES_STATE:
608     case ES_OUT_SET_ES_FMT:
609     case ES_OUT_SET_TIMES:
610     case ES_OUT_SET_JITTER:
611     {
612         ts_cmd_t cmd;
613         if( CmdInitControl( &cmd, i_query, args, p_sys->b_delayed ) )
614             return VLC_EGENERIC;
615         if( p_sys->b_delayed )
616         {
617             TsPushCmd( p_sys->p_thread, &cmd );
618             return VLC_SUCCESS;
619         }
620         return CmdExecuteControl( p_sys->p_out, &cmd );
621     }
622
623     /* Special control when delayed */
624     case ES_OUT_GET_ES_STATE:
625     {
626         es_out_id_t *p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
627         bool *pb_enabled = (bool*)va_arg( args, bool* );
628
629         if( p_sys->b_delayed )
630         {
631             *pb_enabled = true;
632             return VLC_SUCCESS;
633         }
634         return es_out_Control( p_sys->p_out, ES_OUT_GET_ES_STATE, p_es->p_es, pb_enabled );
635     }
636     /* Special internal input control */
637     case ES_OUT_GET_EMPTY:
638     {
639         bool *pb_empty = (bool*)va_arg( args, bool* );
640         return ControlLockedGetEmpty( p_out, pb_empty );
641     }
642     case ES_OUT_GET_WAKE_UP: /* TODO ? */
643     {
644         mtime_t *pi_wakeup = (mtime_t*)va_arg( args, mtime_t* );
645         return ControlLockedGetWakeup( p_out, pi_wakeup );
646     }
647     case ES_OUT_GET_BUFFERING:
648     {
649         bool *pb_buffering = (bool *)va_arg( args, bool* );
650         return ControlLockedGetBuffering( p_out, pb_buffering );
651     }
652     case ES_OUT_SET_PAUSE_STATE:
653     {
654         const bool b_source_paused = (bool)va_arg( args, int );
655         const bool b_paused = (bool)va_arg( args, int );
656         const mtime_t i_date = (mtime_t) va_arg( args, mtime_t );
657
658         return ControlLockedSetPauseState( p_out, b_source_paused, b_paused, i_date );
659     }
660     case ES_OUT_SET_RATE:
661     {
662         const int i_src_rate = (int)va_arg( args, int );
663         const int i_rate = (int)va_arg( args, int );
664
665         return ControlLockedSetRate( p_out, i_src_rate, i_rate );
666     }
667     case ES_OUT_SET_TIME:
668     {
669         const mtime_t i_date = (mtime_t)va_arg( args, mtime_t );
670
671         return ControlLockedSetTime( p_out, i_date );
672     }
673     case ES_OUT_SET_FRAME_NEXT:
674     {
675         return ControlLockedSetFrameNext( p_out );
676     }
677     case ES_OUT_GET_PCR_SYSTEM:
678     {
679         if( p_sys->b_delayed )
680             return VLC_EGENERIC;
681
682         mtime_t *pi_system = (mtime_t*)va_arg( args, mtime_t * );
683         mtime_t *pi_delay  = (mtime_t*)va_arg( args, mtime_t * );
684         return es_out_ControlGetPcrSystem( p_sys->p_out, pi_system, pi_delay );
685     }
686     case ES_OUT_MODIFY_PCR_SYSTEM:
687     {
688         const bool    b_absolute = va_arg( args, int );
689         const mtime_t i_system   = va_arg( args, mtime_t );
690
691         if( b_absolute && p_sys->b_delayed )
692             return VLC_EGENERIC;
693
694         return es_out_ControlModifyPcrSystem( p_sys->p_out, b_absolute, i_system );
695     }
696     case ES_OUT_GET_GROUP_FORCED:
697     {
698         int *pi_group = va_arg( args, int * );
699         return es_out_Control( p_sys->p_out, ES_OUT_GET_GROUP_FORCED, pi_group );
700     }
701
702
703     default:
704         msg_Err( p_sys->p_input, "Unknown es_out_Control query !" );
705         assert(0);
706         return VLC_EGENERIC;
707     }
708 }
709 static int Control( es_out_t *p_out, int i_query, va_list args )
710 {
711     es_out_sys_t *p_sys = p_out->p_sys;
712     int i_ret;
713
714     vlc_mutex_lock( &p_sys->lock );
715
716     TsAutoStop( p_out );
717
718     i_ret = ControlLocked( p_out, i_query, args );
719
720     vlc_mutex_unlock( &p_sys->lock );
721
722     return i_ret;
723 }
724
725 /*****************************************************************************
726  *
727  *****************************************************************************/
728 static void TsDestructor( vlc_object_t *p_this )
729 {
730     ts_thread_t *p_ts = (ts_thread_t*)p_this;
731
732     vlc_cond_destroy( &p_ts->wait );
733     vlc_mutex_destroy( &p_ts->lock );
734 }
735 static int TsStart( es_out_t *p_out )
736 {
737     es_out_sys_t *p_sys = p_out->p_sys;
738     ts_thread_t *p_ts;
739
740     assert( !p_sys->b_delayed );
741
742     p_sys->p_thread = p_ts = vlc_custom_create( p_sys->p_input, sizeof(ts_thread_t),
743                                                 VLC_OBJECT_GENERIC, "es out timeshift" );
744     if( !p_ts )
745         return VLC_EGENERIC;
746
747     p_ts->i_tmp_size_max = p_sys->i_tmp_size_max;
748     p_ts->psz_tmp_path = p_sys->psz_tmp_path;
749     p_ts->p_input = p_sys->p_input;
750     p_ts->p_out = p_sys->p_out;
751     vlc_mutex_init( &p_ts->lock );
752     vlc_cond_init( &p_ts->wait );
753     p_ts->b_paused = p_sys->b_input_paused && !p_sys->b_input_paused_source;
754     p_ts->i_pause_date = p_ts->b_paused ? mdate() : -1;
755     p_ts->i_rate_source = p_sys->i_input_rate_source;
756     p_ts->i_rate        = p_sys->i_input_rate;
757     p_ts->i_rate_date = -1;
758     p_ts->i_rate_delay = 0;
759     p_ts->i_buffering_delay = 0;
760     p_ts->i_cmd_delay = 0;
761     p_ts->p_storage_r = NULL;
762     p_ts->p_storage_w = NULL;
763
764     vlc_object_set_destructor( p_ts, TsDestructor );
765
766     p_sys->b_delayed = true;
767     if( vlc_thread_create( p_ts, TsRun, VLC_THREAD_PRIORITY_INPUT ) )
768     {
769         msg_Err( p_sys->p_input, "cannot create input thread" );
770
771         vlc_object_release( p_ts );
772
773         p_sys->b_delayed = false;
774         return VLC_EGENERIC;
775     }
776
777     return VLC_SUCCESS;
778 }
779 static void TsAutoStop( es_out_t *p_out )
780 {
781     es_out_sys_t *p_sys = p_out->p_sys;
782
783     if( !p_sys->b_delayed || !TsIsUnused( p_sys->p_thread ) )
784         return;
785
786     msg_Warn( p_sys->p_input, "es out timeshift: auto stop" );
787     TsStop( p_sys->p_thread );
788
789     p_sys->b_delayed = false;
790 }
791 static void TsStop( ts_thread_t *p_ts )
792 {
793     vlc_object_kill( p_ts );
794     vlc_thread_join( p_ts );
795
796     vlc_mutex_lock( &p_ts->lock );
797     for( ;; )
798     {
799         ts_cmd_t cmd;
800
801         if( TsPopCmdLocked( p_ts, &cmd, true ) )
802             break;
803
804         CmdClean( &cmd );
805     }
806     assert( !p_ts->p_storage_r || !p_ts->p_storage_r->p_next );
807     if( p_ts->p_storage_r )
808         TsStorageDelete( p_ts->p_storage_r );
809     vlc_mutex_unlock( &p_ts->lock );
810
811     vlc_object_release( p_ts );
812 }
813 static void TsPushCmd( ts_thread_t *p_ts, ts_cmd_t *p_cmd )
814 {
815     vlc_mutex_lock( &p_ts->lock );
816
817     if( !p_ts->p_storage_w || TsStorageIsFull( p_ts->p_storage_w, p_cmd ) )
818     {
819         ts_storage_t *p_storage = TsStorageNew( p_ts->psz_tmp_path, p_ts->i_tmp_size_max );
820
821         if( !p_storage )
822         {
823             CmdClean( p_cmd );
824             vlc_mutex_unlock( &p_ts->lock );
825             /* TODO warn the user (but only once) */
826             return;
827         }
828
829         if( !p_ts->p_storage_w )
830         {
831             p_ts->p_storage_r = p_ts->p_storage_w = p_storage;
832         }
833         else
834         {
835             TsStoragePack( p_ts->p_storage_w );
836             p_ts->p_storage_w->p_next = p_storage;
837             p_ts->p_storage_w = p_storage;
838         }
839     }
840
841     /* TODO return error and warn the user (but only once) */
842     TsStoragePushCmd( p_ts->p_storage_w, p_cmd, p_ts->p_storage_r == p_ts->p_storage_w );
843
844     vlc_cond_signal( &p_ts->wait );
845
846     vlc_mutex_unlock( &p_ts->lock );
847 }
848 static int TsPopCmdLocked( ts_thread_t *p_ts, ts_cmd_t *p_cmd, bool b_flush )
849 {
850     vlc_assert_locked( &p_ts->lock );
851
852     if( TsStorageIsEmpty( p_ts->p_storage_r ) )
853         return VLC_EGENERIC;
854
855     TsStoragePopCmd( p_ts->p_storage_r, p_cmd, b_flush );
856
857     while( p_ts->p_storage_r && TsStorageIsEmpty( p_ts->p_storage_r ) )
858     {
859         ts_storage_t *p_next = p_ts->p_storage_r->p_next;
860         if( !p_next )
861             break;
862
863         TsStorageDelete( p_ts->p_storage_r );
864         p_ts->p_storage_r = p_next;
865     }
866
867     return VLC_SUCCESS;
868 }
869 static bool TsHasCmd( ts_thread_t *p_ts )
870 {
871     bool b_cmd;
872
873     vlc_mutex_lock( &p_ts->lock );
874     b_cmd =  TsStorageIsEmpty( p_ts->p_storage_r );
875     vlc_mutex_unlock( &p_ts->lock );
876
877     return b_cmd;
878 }
879 static bool TsIsUnused( ts_thread_t *p_ts )
880 {
881     bool b_unused;
882
883     vlc_mutex_lock( &p_ts->lock );
884     b_unused = !p_ts->b_paused &&
885                p_ts->i_rate == p_ts->i_rate_source &&
886                TsStorageIsEmpty( p_ts->p_storage_r );
887     vlc_mutex_unlock( &p_ts->lock );
888
889     return b_unused;
890 }
891 static int TsChangePause( ts_thread_t *p_ts, bool b_source_paused, bool b_paused, mtime_t i_date )
892 {
893     vlc_mutex_lock( &p_ts->lock );
894
895     int i_ret;
896     if( b_paused )
897     {
898         assert( !b_source_paused );
899         i_ret = es_out_SetPauseState( p_ts->p_out, true, true, i_date );
900     }
901     else
902     {
903         i_ret = es_out_SetPauseState( p_ts->p_out, false, false, i_date );
904     }
905
906     if( !i_ret )
907     {
908         if( !b_paused )
909         {
910             assert( p_ts->i_pause_date > 0 );
911
912             p_ts->i_cmd_delay += i_date - p_ts->i_pause_date;
913         }
914
915         p_ts->b_paused = b_paused;
916         p_ts->i_pause_date = i_date;
917
918         vlc_cond_signal( &p_ts->wait );
919     }
920     vlc_mutex_unlock( &p_ts->lock );
921     return i_ret;
922 }
923 static int TsChangeRate( ts_thread_t *p_ts, int i_src_rate, int i_rate )
924 {
925     int i_ret;
926
927     vlc_mutex_lock( &p_ts->lock );
928     p_ts->i_cmd_delay += p_ts->i_rate_delay;
929
930     p_ts->i_rate_date = -1;
931     p_ts->i_rate_delay = 0;
932     p_ts->i_rate = i_rate;
933     p_ts->i_rate_source = i_src_rate;
934
935     i_ret = es_out_SetRate( p_ts->p_out, i_rate, i_rate );
936     vlc_mutex_unlock( &p_ts->lock );
937
938     return i_ret;
939 }
940
941 static void *TsRun( vlc_object_t *p_thread )
942 {
943     ts_thread_t *p_ts = (ts_thread_t*)p_thread;
944     mtime_t i_buffering_date = -1;
945
946     for( ;; )
947     {
948         ts_cmd_t cmd;
949         mtime_t  i_deadline;
950         bool b_buffering;
951
952         /* Pop a command to execute */
953         vlc_mutex_lock( &p_ts->lock );
954         mutex_cleanup_push( &p_ts->lock );
955
956         for( ;; )
957         {
958             const int canc = vlc_savecancel();
959             b_buffering = es_out_GetBuffering( p_ts->p_out );
960
961             if( ( !p_ts->b_paused || b_buffering ) && !TsPopCmdLocked( p_ts, &cmd, false ) )
962             {
963                 vlc_restorecancel( canc );
964                 break;
965             }
966             vlc_restorecancel( canc );
967
968             vlc_cond_wait( &p_ts->wait, &p_ts->lock );
969         }
970
971         if( b_buffering && i_buffering_date < 0 )
972         {
973             i_buffering_date = cmd.i_date;
974         }
975         else if( i_buffering_date > 0 )
976         {
977             p_ts->i_buffering_delay += i_buffering_date - cmd.i_date; /* It is < 0 */
978             if( b_buffering )
979                 i_buffering_date = cmd.i_date;
980             else
981                 i_buffering_date = -1;
982         }
983
984         if( p_ts->i_rate_date < 0 )
985             p_ts->i_rate_date = cmd.i_date;
986
987         p_ts->i_rate_delay = 0;
988         if( p_ts->i_rate_source != p_ts->i_rate )
989         {
990             const mtime_t i_duration = cmd.i_date - p_ts->i_rate_date;
991             p_ts->i_rate_delay = i_duration * p_ts->i_rate / p_ts->i_rate_source - i_duration;
992         }
993         if( p_ts->i_cmd_delay + p_ts->i_rate_delay + p_ts->i_buffering_delay < 0 && p_ts->i_rate != p_ts->i_rate_source )
994         {
995             const int canc = vlc_savecancel();
996
997             /* Auto reset to rate 1.0 */
998             msg_Warn( p_ts->p_input, "es out timeshift: auto reset rate to %d", p_ts->i_rate_source );
999
1000             p_ts->i_cmd_delay = 0;
1001             p_ts->i_buffering_delay = 0;
1002
1003             p_ts->i_rate_delay = 0;
1004             p_ts->i_rate_date = -1;
1005             p_ts->i_rate = p_ts->i_rate_source;
1006
1007             if( !es_out_SetRate( p_ts->p_out, p_ts->i_rate_source, p_ts->i_rate ) )
1008             {
1009                 vlc_value_t val = { .i_int = p_ts->i_rate };
1010                 /* Warn back input
1011                  * FIXME it is perfectly safe BUT it is ugly as it may hide a
1012                  * rate change requested by user */
1013                 input_ControlPush( p_ts->p_input, INPUT_CONTROL_SET_RATE, &val );
1014             }
1015
1016             vlc_restorecancel( canc );
1017         }
1018         i_deadline = cmd.i_date + p_ts->i_cmd_delay + p_ts->i_rate_delay + p_ts->i_buffering_delay;
1019
1020         vlc_cleanup_run();
1021
1022         /* Regulate the speed of command processing to the same one than
1023          * reading  */
1024         vlc_cleanup_push( cmd_cleanup_routine, &cmd );
1025
1026         mwait( i_deadline );
1027
1028         vlc_cleanup_pop();
1029
1030         /* Execute the command  */
1031         const int canc = vlc_savecancel();
1032         switch( cmd.i_type )
1033         {
1034         case C_ADD:
1035             CmdExecuteAdd( p_ts->p_out, &cmd );
1036             CmdCleanAdd( &cmd );
1037             break;
1038         case C_SEND:
1039             CmdExecuteSend( p_ts->p_out, &cmd );
1040             CmdCleanSend( &cmd );
1041             break;
1042         case C_CONTROL:
1043             CmdExecuteControl( p_ts->p_out, &cmd );
1044             CmdCleanControl( &cmd );
1045             break;
1046         case C_DEL:
1047             CmdExecuteDel( p_ts->p_out, &cmd );
1048             break;
1049         default:
1050             assert(0);
1051             break;
1052         }
1053         vlc_restorecancel( canc );
1054     }
1055
1056     return NULL;
1057 }
1058
1059 /*****************************************************************************
1060  *
1061  *****************************************************************************/
1062 static ts_storage_t *TsStorageNew( const char *psz_tmp_path, int64_t i_tmp_size_max )
1063 {
1064     ts_storage_t *p_storage = calloc( 1, sizeof(ts_storage_t) );
1065     if( !p_storage )
1066         return NULL;
1067
1068     /* */
1069     p_storage->p_next = NULL;
1070
1071     /* */
1072     p_storage->i_file_max = i_tmp_size_max;
1073     p_storage->i_file_size = 0;
1074     p_storage->p_filew = GetTmpFile( &p_storage->psz_file, psz_tmp_path );
1075     if( p_storage->psz_file )
1076         p_storage->p_filer = vlc_fopen( p_storage->psz_file, "rb" );
1077
1078     /* */
1079     p_storage->i_cmd_w = 0;
1080     p_storage->i_cmd_r = 0;
1081     p_storage->i_cmd_max = 30000;
1082     p_storage->p_cmd = malloc( p_storage->i_cmd_max * sizeof(*p_storage->p_cmd) );
1083     //fprintf( stderr, "\nSTORAGE name=%s size=%d KiB\n", p_storage->psz_file, p_storage->i_cmd_max * sizeof(*p_storage->p_cmd) /1024 );
1084
1085     if( !p_storage->p_cmd || !p_storage->p_filew || !p_storage->p_filer )
1086     {
1087         TsStorageDelete( p_storage );
1088         return NULL;
1089     }
1090     return p_storage;
1091 }
1092 static void TsStorageDelete( ts_storage_t *p_storage )
1093 {
1094     while( p_storage->i_cmd_r < p_storage->i_cmd_w )
1095     {
1096         ts_cmd_t cmd;
1097
1098         TsStoragePopCmd( p_storage, &cmd, true );
1099
1100         CmdClean( &cmd );
1101     }
1102     free( p_storage->p_cmd );
1103
1104     if( p_storage->p_filer )
1105         fclose( p_storage->p_filer );
1106     if( p_storage->p_filew )
1107         fclose( p_storage->p_filew );
1108
1109     if( p_storage->psz_file )
1110     {
1111         vlc_unlink( p_storage->psz_file );
1112         free( p_storage->psz_file );
1113     }
1114
1115     free( p_storage );
1116 }
1117 static void TsStoragePack( ts_storage_t *p_storage )
1118 {
1119     /* Try to release a bit of memory */
1120     if( p_storage->i_cmd_w >= p_storage->i_cmd_max )
1121         return;
1122
1123     p_storage->i_cmd_max = __MAX( p_storage->i_cmd_w, 1 );
1124
1125     ts_cmd_t *p_new = realloc( p_storage->p_cmd, p_storage->i_cmd_max * sizeof(*p_storage->p_cmd) );
1126     if( p_new )
1127         p_storage->p_cmd = p_new;
1128 }
1129 static bool TsStorageIsFull( ts_storage_t *p_storage, const ts_cmd_t *p_cmd )
1130 {
1131     if( p_cmd && p_cmd->i_type == C_SEND && p_storage->i_cmd_w > 0 )
1132     {
1133         size_t i_size = sizeof(*p_cmd->u.send.p_block) + p_cmd->u.send.p_block->i_buffer;
1134
1135         if( p_storage->i_file_size + i_size >= p_storage->i_file_max )
1136             return true;
1137     }
1138     return p_storage->i_cmd_w >= p_storage->i_cmd_max;
1139 }
1140 static bool TsStorageIsEmpty( ts_storage_t *p_storage )
1141 {
1142     return !p_storage || p_storage->i_cmd_r >= p_storage->i_cmd_w;
1143 }
1144 static void TsStoragePushCmd( ts_storage_t *p_storage, const ts_cmd_t *p_cmd, bool b_flush )
1145 {
1146     ts_cmd_t cmd = *p_cmd;
1147
1148     assert( !TsStorageIsFull( p_storage, p_cmd ) );
1149
1150     if( cmd.i_type == C_SEND )
1151     {
1152         block_t *p_block = cmd.u.send.p_block;
1153
1154         cmd.u.send.p_block = NULL;
1155         cmd.u.send.i_offset = ftell( p_storage->p_filew );
1156
1157         if( fwrite( p_block, sizeof(*p_block), 1, p_storage->p_filew ) != 1 )
1158         {
1159             block_Release( p_block );
1160             return;
1161         }
1162         p_storage->i_file_size += sizeof(*p_block);
1163         if( p_block->i_buffer > 0 )
1164         {
1165             if( fwrite( p_block->p_buffer, p_block->i_buffer, 1, p_storage->p_filew ) != 1 )
1166             {
1167                 block_Release( p_block );
1168                 return;
1169             }
1170         }
1171         p_storage->i_file_size += p_block->i_buffer;
1172         block_Release( p_block );
1173
1174         if( b_flush )
1175             fflush( p_storage->p_filew );
1176     }
1177     p_storage->p_cmd[p_storage->i_cmd_w++] = cmd;
1178 }
1179 static void TsStoragePopCmd( ts_storage_t *p_storage, ts_cmd_t *p_cmd, bool b_flush )
1180 {
1181     assert( !TsStorageIsEmpty( p_storage ) );
1182
1183     *p_cmd = p_storage->p_cmd[p_storage->i_cmd_r++];
1184     if( p_cmd->i_type == C_SEND )
1185     {
1186         block_t block;
1187
1188         if( !b_flush &&
1189             !fseek( p_storage->p_filer, p_cmd->u.send.i_offset, SEEK_SET ) &&
1190             fread( &block, sizeof(block), 1, p_storage->p_filer ) == 1 )
1191         {
1192             block_t *p_block = block_Alloc( block.i_buffer );
1193             if( p_block )
1194             {
1195                 p_block->i_dts      = block.i_dts;
1196                 p_block->i_pts      = block.i_pts;
1197                 p_block->i_flags    = block.i_flags;
1198                 p_block->i_length   = block.i_length;
1199                 p_block->i_rate     = block.i_rate;
1200                 p_block->i_nb_samples = block.i_nb_samples;
1201                 p_block->i_buffer = fread( p_block->p_buffer, 1, block.i_buffer, p_storage->p_filer );
1202             }
1203             p_cmd->u.send.p_block = p_block;
1204         }
1205         else
1206         {
1207             //fprintf( stderr, "TsStoragePopCmd: %m\n" );
1208             p_cmd->u.send.p_block = block_Alloc( 1 );
1209         }
1210     }
1211 }
1212
1213 /*****************************************************************************
1214  *
1215  *****************************************************************************/
1216 static void CmdClean( ts_cmd_t *p_cmd )
1217 {
1218     switch( p_cmd->i_type )
1219     {
1220     case C_ADD:
1221         CmdCleanAdd( p_cmd );
1222         break;
1223     case C_SEND:
1224         CmdCleanSend( p_cmd );
1225         break;
1226     case C_CONTROL:
1227         CmdCleanControl( p_cmd );
1228         break;
1229     case C_DEL:
1230         break;
1231     default:
1232         assert(0);
1233         break;
1234     }
1235 }
1236
1237 static int CmdInitAdd( ts_cmd_t *p_cmd, es_out_id_t *p_es, const es_format_t *p_fmt, bool b_copy )
1238 {
1239     p_cmd->i_type = C_ADD;
1240     p_cmd->i_date = mdate();
1241     p_cmd->u.add.p_es = p_es;
1242     if( b_copy )
1243     {
1244         p_cmd->u.add.p_fmt = malloc( sizeof(*p_fmt) );
1245         if( !p_cmd->u.add.p_fmt )
1246             return VLC_EGENERIC;
1247         es_format_Copy( p_cmd->u.add.p_fmt, p_fmt );
1248     }
1249     else
1250     {
1251         p_cmd->u.add.p_fmt = (es_format_t*)p_fmt;
1252     }
1253     return VLC_SUCCESS;
1254 }
1255 static void CmdExecuteAdd( es_out_t *p_out, ts_cmd_t *p_cmd )
1256 {
1257     p_cmd->u.add.p_es->p_es = es_out_Add( p_out, p_cmd->u.add.p_fmt );
1258 }
1259 static void CmdCleanAdd( ts_cmd_t *p_cmd )
1260 {
1261     es_format_Clean( p_cmd->u.add.p_fmt );
1262     free( p_cmd->u.add.p_fmt );
1263 }
1264
1265 static void CmdInitSend( ts_cmd_t *p_cmd, es_out_id_t *p_es, block_t *p_block )
1266 {
1267     p_cmd->i_type = C_SEND;
1268     p_cmd->i_date = mdate();
1269     p_cmd->u.send.p_es = p_es;
1270     p_cmd->u.send.p_block = p_block;
1271 }
1272 static int CmdExecuteSend( es_out_t *p_out, ts_cmd_t *p_cmd )
1273 {
1274     block_t *p_block = p_cmd->u.send.p_block;
1275
1276     p_cmd->u.send.p_block = NULL;
1277
1278     if( p_block )
1279     {
1280         if( p_cmd->u.send.p_es->p_es )
1281             return es_out_Send( p_out, p_cmd->u.send.p_es->p_es, p_block );
1282         block_Release( p_block );
1283     }
1284     return VLC_EGENERIC;
1285 }
1286 static void CmdCleanSend( ts_cmd_t *p_cmd )
1287 {
1288     if( p_cmd->u.send.p_block )
1289         block_Release( p_cmd->u.send.p_block );
1290 }
1291
1292 static int CmdInitDel( ts_cmd_t *p_cmd, es_out_id_t *p_es )
1293 {
1294     p_cmd->i_type = C_DEL;
1295     p_cmd->i_date = mdate();
1296     p_cmd->u.del.p_es = p_es;
1297     return VLC_SUCCESS;
1298 }
1299 static void CmdExecuteDel( es_out_t *p_out, ts_cmd_t *p_cmd )
1300 {
1301     if( p_cmd->u.del.p_es->p_es )
1302         es_out_Del( p_out, p_cmd->u.del.p_es->p_es );
1303     free( p_cmd->u.del.p_es );
1304 }
1305
1306 static int CmdInitControl( ts_cmd_t *p_cmd, int i_query, va_list args, bool b_copy )
1307 {
1308     p_cmd->i_type = C_CONTROL;
1309     p_cmd->i_date = mdate();
1310     p_cmd->u.control.i_query = i_query;
1311
1312     switch( i_query )
1313     {
1314     /* Pass-through control */
1315     case ES_OUT_SET_MODE:    /* arg1= int                            */
1316     case ES_OUT_SET_GROUP:   /* arg1= int                            */
1317     case ES_OUT_DEL_GROUP:   /* arg1=int i_group */
1318         p_cmd->u.control.u.i_int = (int)va_arg( args, int );
1319         break;
1320
1321     case ES_OUT_SET_PCR:                /* arg1=int64_t i_pcr(microsecond!) (using default group 0)*/
1322     case ES_OUT_SET_NEXT_DISPLAY_TIME:  /* arg1=int64_t i_pts(microsecond) */
1323         p_cmd->u.control.u.i_i64 = (int64_t)va_arg( args, int64_t );
1324         break;
1325
1326     case ES_OUT_SET_GROUP_PCR:          /* arg1= int i_group, arg2=int64_t i_pcr(microsecond!)*/
1327         p_cmd->u.control.u.int_i64.i_int = (int)va_arg( args, int );
1328         p_cmd->u.control.u.int_i64.i_i64 = (int64_t)va_arg( args, int64_t );
1329         break;
1330
1331     case ES_OUT_SET_ES_SCRAMBLED_STATE:
1332         p_cmd->u.control.u.es_bool.p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
1333         p_cmd->u.control.u.es_bool.b_bool = (bool)va_arg( args, int );
1334         break;
1335
1336     case ES_OUT_RESET_PCR:           /* no arg */
1337         break;
1338
1339     case ES_OUT_SET_META:        /* arg1=const vlc_meta_t* */
1340     case ES_OUT_SET_GROUP_META:  /* arg1=int i_group arg2=const vlc_meta_t* */
1341     {
1342         if( i_query == ES_OUT_SET_GROUP_META )
1343             p_cmd->u.control.u.int_meta.i_int = (int)va_arg( args, int );
1344         const vlc_meta_t *p_meta = va_arg( args, const vlc_meta_t * );
1345
1346         if( b_copy )
1347         {
1348             p_cmd->u.control.u.int_meta.p_meta = vlc_meta_New();
1349             if( !p_cmd->u.control.u.int_meta.p_meta )
1350                 return VLC_EGENERIC;
1351             vlc_meta_Merge( p_cmd->u.control.u.int_meta.p_meta, p_meta );
1352         }
1353         else
1354         {
1355             /* The cast is only needed to avoid warning */
1356             p_cmd->u.control.u.int_meta.p_meta = (vlc_meta_t*)p_meta;
1357         }
1358         break;
1359     }
1360
1361     case ES_OUT_SET_GROUP_EPG:   /* arg1=int i_group arg2=const vlc_epg_t* */
1362     {
1363         p_cmd->u.control.u.int_epg.i_int = (int)va_arg( args, int );
1364         const vlc_epg_t *p_epg = va_arg( args, const vlc_epg_t * );
1365
1366         if( b_copy )
1367         {
1368             p_cmd->u.control.u.int_epg.p_epg = vlc_epg_New( p_epg->psz_name );
1369             if( !p_cmd->u.control.u.int_epg.p_epg )
1370                 return VLC_EGENERIC;
1371             for( int i = 0; i < p_epg->i_event; i++ )
1372             {
1373                 vlc_epg_event_t *p_evt = p_epg->pp_event[i];
1374
1375                 vlc_epg_AddEvent( p_cmd->u.control.u.int_epg.p_epg,
1376                                   p_evt->i_start, p_evt->i_duration,
1377                                   p_evt->psz_name,
1378                                   p_evt->psz_short_description, p_evt->psz_description );
1379             }
1380             vlc_epg_SetCurrent( p_cmd->u.control.u.int_epg.p_epg,
1381                                 p_epg->p_current ? p_epg->p_current->i_start : -1 );
1382         }
1383         else
1384         {
1385             /* The cast is only needed to avoid warning */
1386             p_cmd->u.control.u.int_epg.p_epg = (vlc_epg_t*)p_epg;
1387         }
1388         break;
1389     }
1390
1391     /* Modified control */
1392     case ES_OUT_SET_ES:      /* arg1= es_out_id_t*                   */
1393     case ES_OUT_RESTART_ES:  /* arg1= es_out_id_t*                   */
1394     case ES_OUT_SET_ES_DEFAULT: /* arg1= es_out_id_t*                */
1395         p_cmd->u.control.u.p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
1396         break;
1397
1398     case ES_OUT_SET_ES_STATE:/* arg1= es_out_id_t* arg2=bool   */
1399         p_cmd->u.control.u.es_bool.p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
1400         p_cmd->u.control.u.es_bool.b_bool = (bool)va_arg( args, int );
1401         break;
1402
1403     case ES_OUT_SET_ES_FMT:     /* arg1= es_out_id_t* arg2=es_format_t* */
1404     {
1405         p_cmd->u.control.u.es_fmt.p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
1406         es_format_t *p_fmt = (es_format_t*)va_arg( args, es_format_t * );
1407
1408         if( b_copy )
1409         {
1410             p_cmd->u.control.u.es_fmt.p_fmt = malloc( sizeof(*p_fmt) );
1411             if( !p_cmd->u.control.u.es_fmt.p_fmt )
1412                 return VLC_EGENERIC;
1413             es_format_Copy( p_cmd->u.control.u.es_fmt.p_fmt, p_fmt );
1414         }
1415         else
1416         {
1417             p_cmd->u.control.u.es_fmt.p_fmt = p_fmt;
1418         }
1419         break;
1420     }
1421     case ES_OUT_SET_TIMES:
1422     {
1423         double f_position = (double)va_arg( args, double );
1424         mtime_t i_time = (mtime_t)va_arg( args, mtime_t );
1425         mtime_t i_length = (mtime_t)va_arg( args, mtime_t );
1426
1427         p_cmd->u.control.u.times.f_position = f_position;
1428         p_cmd->u.control.u.times.i_time = i_time;
1429         p_cmd->u.control.u.times.i_length = i_length;
1430         break;
1431     }
1432     case ES_OUT_SET_JITTER:
1433     {
1434         mtime_t i_pts_delay = (mtime_t)va_arg( args, mtime_t );
1435         mtime_t i_pts_jitter = (mtime_t)va_arg( args, mtime_t );
1436         int     i_cr_average = (int)va_arg( args, int );
1437
1438         p_cmd->u.control.u.jitter.i_pts_delay = i_pts_delay;
1439         p_cmd->u.control.u.jitter.i_pts_jitter = i_pts_jitter;
1440         p_cmd->u.control.u.jitter.i_cr_average = i_cr_average;
1441         break;
1442     }
1443
1444     default:
1445         assert(0);
1446         return VLC_EGENERIC;
1447     }
1448
1449     return VLC_SUCCESS;
1450 }
1451 static int CmdExecuteControl( es_out_t *p_out, ts_cmd_t *p_cmd )
1452 {
1453     const int i_query = p_cmd->u.control.i_query;
1454
1455     switch( i_query )
1456     {
1457     /* Pass-through control */
1458     case ES_OUT_SET_MODE:    /* arg1= int                            */
1459     case ES_OUT_SET_GROUP:   /* arg1= int                            */
1460     case ES_OUT_DEL_GROUP:   /* arg1=int i_group */
1461         return es_out_Control( p_out, i_query, p_cmd->u.control.u.i_int );
1462
1463     case ES_OUT_SET_PCR:                /* arg1=int64_t i_pcr(microsecond!) (using default group 0)*/
1464     case ES_OUT_SET_NEXT_DISPLAY_TIME:  /* arg1=int64_t i_pts(microsecond) */
1465         return es_out_Control( p_out, i_query, p_cmd->u.control.u.i_i64 );
1466
1467     case ES_OUT_SET_GROUP_PCR:          /* arg1= int i_group, arg2=int64_t i_pcr(microsecond!)*/
1468         return es_out_Control( p_out, i_query, p_cmd->u.control.u.int_i64.i_int,
1469                                                p_cmd->u.control.u.int_i64.i_i64 );
1470
1471     case ES_OUT_RESET_PCR:           /* no arg */
1472         return es_out_Control( p_out, i_query );
1473
1474     case ES_OUT_SET_GROUP_META:  /* arg1=int i_group arg2=const vlc_meta_t* */
1475         return es_out_Control( p_out, i_query, p_cmd->u.control.u.int_meta.i_int,
1476                                                p_cmd->u.control.u.int_meta.p_meta );
1477
1478     case ES_OUT_SET_GROUP_EPG:   /* arg1=int i_group arg2=const vlc_epg_t* */
1479         return es_out_Control( p_out, i_query, p_cmd->u.control.u.int_epg.i_int,
1480                                                p_cmd->u.control.u.int_epg.p_epg );
1481
1482     case ES_OUT_SET_ES_SCRAMBLED_STATE: /* arg1=int es_out_id_t* arg2=bool */
1483         return es_out_Control( p_out, i_query, p_cmd->u.control.u.es_bool.p_es->p_es,
1484                                                p_cmd->u.control.u.es_bool.b_bool );
1485
1486     case ES_OUT_SET_META:  /* arg1=const vlc_meta_t* */
1487         return es_out_Control( p_out, i_query, p_cmd->u.control.u.int_meta.p_meta );
1488
1489     /* Modified control */
1490     case ES_OUT_SET_ES:      /* arg1= es_out_id_t*                   */
1491     case ES_OUT_RESTART_ES:  /* arg1= es_out_id_t*                   */
1492     case ES_OUT_SET_ES_DEFAULT: /* arg1= es_out_id_t*                */
1493         return es_out_Control( p_out, i_query, p_cmd->u.control.u.p_es->p_es );
1494
1495     case ES_OUT_SET_ES_STATE:/* arg1= es_out_id_t* arg2=bool   */
1496         return es_out_Control( p_out, i_query, p_cmd->u.control.u.es_bool.p_es->p_es,
1497                                                p_cmd->u.control.u.es_bool.b_bool );
1498
1499     case ES_OUT_SET_ES_FMT:     /* arg1= es_out_id_t* arg2=es_format_t* */
1500         return es_out_Control( p_out, i_query, p_cmd->u.control.u.es_fmt.p_es->p_es,
1501                                                p_cmd->u.control.u.es_fmt.p_fmt );
1502
1503     case ES_OUT_SET_TIMES:
1504         return es_out_Control( p_out, i_query, p_cmd->u.control.u.times.f_position,
1505                                                p_cmd->u.control.u.times.i_time,
1506                                                p_cmd->u.control.u.times.i_length );
1507     case ES_OUT_SET_JITTER:
1508         return es_out_Control( p_out, i_query, p_cmd->u.control.u.jitter.i_pts_delay,
1509                                                p_cmd->u.control.u.jitter.i_pts_jitter,
1510                                                p_cmd->u.control.u.jitter.i_cr_average );
1511
1512     default:
1513         assert(0);
1514         return VLC_EGENERIC;
1515     }
1516 }
1517 static void CmdCleanControl( ts_cmd_t *p_cmd )
1518 {
1519     if( ( p_cmd->u.control.i_query == ES_OUT_SET_GROUP_META ||
1520           p_cmd->u.control.i_query == ES_OUT_SET_META ) &&
1521         p_cmd->u.control.u.int_meta.p_meta )
1522     {
1523         vlc_meta_Delete( p_cmd->u.control.u.int_meta.p_meta );
1524     }
1525     else if( p_cmd->u.control.i_query == ES_OUT_SET_GROUP_EPG &&
1526              p_cmd->u.control.u.int_epg.p_epg )
1527     {
1528         vlc_epg_Delete( p_cmd->u.control.u.int_epg.p_epg );
1529     }
1530     else if( p_cmd->u.control.i_query == ES_OUT_SET_ES_FMT &&
1531              p_cmd->u.control.u.es_fmt.p_fmt )
1532     {
1533         es_format_Clean( p_cmd->u.control.u.es_fmt.p_fmt );
1534         free( p_cmd->u.control.u.es_fmt.p_fmt );
1535     }
1536 }
1537
1538
1539 /*****************************************************************************
1540  * GetTmpFile/Path:
1541  *****************************************************************************/
1542 static char *GetTmpPath( char *psz_path )
1543 {
1544     if( psz_path && *psz_path )
1545     {
1546         /* Make sure that the path exists and is a directory */
1547         struct stat s;
1548         const int i_ret = vlc_stat( psz_path, &s );
1549
1550         if( i_ret < 0 && !vlc_mkdir( psz_path, 0600 ) )
1551             return psz_path;
1552         else if( i_ret == 0 && ( s.st_mode & S_IFDIR ) )
1553             return psz_path;
1554     }
1555     free( psz_path );
1556
1557     /* Create a suitable path */
1558 #if defined (WIN32) && !defined (UNDER_CE)
1559     const DWORD dwCount = GetTempPathW( 0, NULL );
1560     wchar_t *psw_path = calloc( dwCount + 1, sizeof(wchar_t) );
1561     if( psw_path )
1562     {
1563         if( GetTempPathW( dwCount + 1, psw_path ) <= 0 )
1564         {
1565             free( psw_path );
1566
1567             psw_path = _wgetcwd( NULL, 0 );
1568         }
1569     }
1570
1571     psz_path = NULL;
1572     if( psw_path )
1573     {
1574         psz_path = FromWide( psw_path );
1575         while( psz_path && *psz_path && psz_path[strlen( psz_path ) - 1] == '\\' )
1576             psz_path[strlen( psz_path ) - 1] = '\0';
1577
1578         free( psw_path );
1579     }
1580
1581     if( !psz_path || *psz_path == '\0' )
1582     {
1583         free( psz_path );
1584         return strdup( "C:" );
1585     }
1586 #else
1587     psz_path = strdup( "/tmp" );
1588 #endif
1589
1590     return psz_path;
1591 }
1592
1593 static FILE *GetTmpFile( char **ppsz_file, const char *psz_path )
1594 {
1595     char *psz_name;
1596     int fd;
1597     FILE *f;
1598
1599     /* */
1600     *ppsz_file = NULL;
1601     if( asprintf( &psz_name, "%s/vlc-timeshift.XXXXXX", psz_path ) < 0 )
1602         return NULL;
1603
1604     /* */
1605     fd = vlc_mkstemp( psz_name );
1606     *ppsz_file = psz_name;
1607
1608     if( fd < 0 )
1609         return NULL;
1610
1611     /* */
1612     f = fdopen( fd, "w+b" );
1613     if( !f )
1614         close( fd );
1615
1616     return f;
1617 }
1618