forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_manager.cpp
1291 lines (1108 loc) · 34.5 KB
/
input_manager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*****************************************************************************
* input_manager.cpp : Manage an input and interact with its GUI elements
****************************************************************************
* Copyright (C) 2006-2008 the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <[email protected]>
* Ilkka Ollakka <[email protected]>
* Jean-Baptiste <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "input_manager.hpp"
#include "recents.hpp"
#include <vlc_keys.h> /* ACTION_ID */
#include <vlc_url.h> /* decode_URI */
#include <vlc_strings.h> /* str_format_meta */
#include <vlc_aout.h> /* audio_output_t */
#include <QApplication>
#include <QFile>
#include <QDir>
#include <QSignalMapper>
#include <QMessageBox>
#include <assert.h>
static int ItemChanged( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int LeafToParent( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int PLItemChanged( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int PLItemAppended( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int PLItemRemoved( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int InputEvent( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
static int VbiEvent( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void * );
/* Ensure arbitratry (not dynamically allocated) event IDs are not in use */
static inline void registerAndCheckEventIds( int start, int end )
{
for ( int i=start ; i<=end ; i++ )
Q_ASSERT( QEvent::registerEventType( i ) == i ); /* event ID collision ! */
}
/**********************************************************************
* InputManager implementation
**********************************************************************
* The Input Manager can be the main one around the playlist
* But can also be used for VLM dialog or similar
**********************************************************************/
InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
QObject( parent ), p_intf( _p_intf )
{
i_old_playing_status = END_S;
oldName = "";
artUrl = "";
p_input = NULL;
p_input_vbi = NULL;
f_rate = 0.;
p_item = NULL;
b_video = false;
timeA = 0;
timeB = 0;
f_cache = -1.; /* impossible initial value, different from all */
registerAndCheckEventIds( IMEvent::PositionUpdate, IMEvent::FullscreenControlPlanHide );
registerAndCheckEventIds( PLEvent::PLItemAppended, PLEvent::PLEmpty );
}
InputManager::~InputManager()
{
delInput();
}
void InputManager::inputChangedHandler()
{
setInput( THEMIM->getInput() );
}
/* Define the Input used.
Add the callbacks on input
p_input is held once here */
void InputManager::setInput( input_thread_t *_p_input )
{
delInput();
p_input = _p_input;
if( p_input != NULL )
{
msg_Dbg( p_intf, "IM: Setting an input" );
vlc_object_hold( p_input );
addCallbacks();
UpdateStatus();
UpdateName();
UpdateArt();
UpdateTeletext();
UpdateNavigation();
UpdateVout();
p_item = input_GetItem( p_input );
emit rateChanged( var_GetFloat( p_input, "rate" ) );
char *uri = input_item_GetURI( p_item );
/* Get Saved Time */
if( p_item->i_type == ITEM_TYPE_FILE )
{
int i_time = RecentsMRL::getInstance( p_intf )->time( qfu(uri) );
if( i_time > 0 && qfu( uri ) != lastURI &&
!var_GetFloat( p_input, "run-time" ) &&
!var_GetFloat( p_input, "start-time" ) &&
!var_GetFloat( p_input, "stop-time" ) )
{
emit resumePlayback( (int64_t)i_time * 1000 );
}
}
// Save the latest URI to avoid asking to restore the
// position on the same input file.
lastURI = qfu( uri );
RecentsMRL::getInstance( p_intf )->addRecent( lastURI );
free( uri );
}
else
{
p_item = NULL;
assert( !p_input_vbi );
emit rateChanged( var_InheritFloat( p_intf, "rate" ) );
}
}
/* delete Input if it ever existed.
Delete the callbacls on input
p_input is released once here */
void InputManager::delInput()
{
if( !p_input ) return;
msg_Dbg( p_intf, "IM: Deleting the input" );
/* Save time / position */
char *uri = input_item_GetURI( p_item );
if( uri != NULL ) {
float f_pos = var_GetFloat( p_input , "position" );
int64_t i_time = -1;
if( f_pos >= 0.05f && f_pos <= 0.95f
&& var_GetInteger( p_input, "length" ) >= 60 * CLOCK_FREQ )
i_time = var_GetInteger( p_input, "time");
RecentsMRL::getInstance( p_intf )->setTime( qfu(uri), i_time );
free(uri);
}
delCallbacks();
i_old_playing_status = END_S;
p_item = NULL;
oldName = "";
artUrl = "";
b_video = false;
timeA = 0;
timeB = 0;
f_rate = 0. ;
if( p_input_vbi )
{
vlc_object_release( p_input_vbi );
p_input_vbi = NULL;
}
vlc_object_release( p_input );
p_input = NULL;
emit positionUpdated( -1.0, 0 ,0 );
emit rateChanged( var_InheritFloat( p_intf, "rate" ) );
emit nameChanged( "" );
emit chapterChanged( 0 );
emit titleChanged( 0 );
emit playingStatusChanged( END_S );
emit teletextPossible( false );
emit AtoBchanged( false, false );
emit voutChanged( false );
emit voutListChanged( NULL, 0 );
/* Reset all InfoPanels but stats */
emit artChanged( NULL );
emit artChanged( "" );
emit infoChanged( NULL );
emit currentMetaChanged( (input_item_t *)NULL );
emit encryptionChanged( false );
emit recordingStateChanged( false );
emit cachingChanged( 0.0 );
}
/* Convert the event from the callbacks in actions */
void InputManager::customEvent( QEvent *event )
{
int i_type = event->type();
IMEvent *ple = static_cast<IMEvent *>(event);
if( i_type == IMEvent::ItemChanged )
UpdateMeta( ple->item() );
if( !hasInput() )
return;
/* Actions */
switch( i_type )
{
case IMEvent::PositionUpdate:
UpdatePosition();
break;
case IMEvent::StatisticsUpdate:
UpdateStats();
break;
case IMEvent::ItemChanged:
/* Ignore ItemChanged_Type event that does not apply to our input */
if( p_item == ple->item() )
{
UpdateStatus();
UpdateName();
UpdateArt();
UpdateMeta();
/* Update duration of file */
}
break;
case IMEvent::ItemStateChanged:
UpdateStatus();
break;
case IMEvent::NameChanged:
UpdateName();
break;
case IMEvent::MetaChanged:
UpdateMeta();
UpdateName(); /* Needed for NowPlaying */
UpdateArt(); /* Art is part of meta in the core */
break;
case IMEvent::InfoChanged:
UpdateInfo();
break;
case IMEvent::ItemTitleChanged:
UpdateNavigation();
UpdateName(); /* Display the name of the Chapter, if exists */
break;
case IMEvent::ItemRateChanged:
UpdateRate();
break;
case IMEvent::ItemEsChanged:
UpdateTeletext();
// We don't do anything ES related. Why ?
break;
case IMEvent::ItemTeletextChanged:
UpdateTeletext();
break;
case IMEvent::InterfaceVoutUpdate:
UpdateVout();
break;
case IMEvent::SynchroChanged:
emit synchroChanged();
break;
case IMEvent::CachingEvent:
UpdateCaching();
break;
case IMEvent::BookmarksChanged:
emit bookmarksChanged();
break;
case IMEvent::InterfaceAoutUpdate:
UpdateAout();
break;
case IMEvent::RecordingEvent:
UpdateRecord();
break;
case IMEvent::ProgramChanged:
UpdateProgramEvent();
break;
case IMEvent::EPGEvent:
UpdateEPG();
break;
default:
msg_Warn( p_intf, "This shouldn't happen: %i", i_type );
vlc_assert_unreachable();
}
}
/* Add the callbacks on Input. Self explanatory */
inline void InputManager::addCallbacks()
{
var_AddCallback( p_input, "intf-event", InputEvent, this );
}
/* Delete the callbacks on Input. Self explanatory */
inline void InputManager::delCallbacks()
{
var_DelCallback( p_input, "intf-event", InputEvent, this );
}
/* Static callbacks for IM */
static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
vlc_value_t oldval, vlc_value_t newval, void *param )
{
VLC_UNUSED( p_this ); VLC_UNUSED( psz_var ); VLC_UNUSED( oldval );
InputManager *im = (InputManager*)param;
input_item_t *p_item = static_cast<input_item_t *>(newval.p_address);
IMEvent *event = new IMEvent( IMEvent::ItemChanged, p_item );
QApplication::postEvent( im, event );
return VLC_SUCCESS;
}
static int InputEvent( vlc_object_t *p_this, const char *,
vlc_value_t, vlc_value_t newval, void *param )
{
VLC_UNUSED( p_this );
InputManager *im = (InputManager*)param;
IMEvent *event;
switch( newval.i_int )
{
case INPUT_EVENT_STATE:
event = new IMEvent( IMEvent::ItemStateChanged );
break;
case INPUT_EVENT_RATE:
event = new IMEvent( IMEvent::ItemRateChanged );
break;
case INPUT_EVENT_POSITION:
//case INPUT_EVENT_LENGTH:
event = new IMEvent( IMEvent::PositionUpdate );
break;
case INPUT_EVENT_TITLE:
case INPUT_EVENT_CHAPTER:
event = new IMEvent( IMEvent::ItemTitleChanged );
break;
case INPUT_EVENT_ES:
event = new IMEvent( IMEvent::ItemEsChanged );
break;
case INPUT_EVENT_TELETEXT:
event = new IMEvent( IMEvent::ItemTeletextChanged );
break;
case INPUT_EVENT_STATISTICS:
event = new IMEvent( IMEvent::StatisticsUpdate );
break;
case INPUT_EVENT_VOUT:
event = new IMEvent( IMEvent::InterfaceVoutUpdate );
break;
case INPUT_EVENT_AOUT:
event = new IMEvent( IMEvent::InterfaceAoutUpdate );
break;
case INPUT_EVENT_ITEM_META: /* Codec MetaData + Art */
event = new IMEvent( IMEvent::MetaChanged );
break;
case INPUT_EVENT_ITEM_INFO: /* Codec Info */
event = new IMEvent( IMEvent::InfoChanged );
break;
case INPUT_EVENT_ITEM_NAME:
event = new IMEvent( IMEvent::NameChanged );
break;
case INPUT_EVENT_AUDIO_DELAY:
case INPUT_EVENT_SUBTITLE_DELAY:
event = new IMEvent( IMEvent::SynchroChanged );
break;
case INPUT_EVENT_CACHE:
event = new IMEvent( IMEvent::CachingEvent );
break;
case INPUT_EVENT_BOOKMARK:
event = new IMEvent( IMEvent::BookmarksChanged );
break;
case INPUT_EVENT_RECORD:
event = new IMEvent( IMEvent::RecordingEvent );
break;
case INPUT_EVENT_PROGRAM:
/* This is for PID changes */
event = new IMEvent( IMEvent::ProgramChanged );
break;
case INPUT_EVENT_ITEM_EPG:
/* EPG data changed */
event = new IMEvent( IMEvent::EPGEvent );
break;
case INPUT_EVENT_SIGNAL:
/* This is for capture-card signals */
/* event = new IMEvent( SignalChanged_Type );
break; */
default:
event = NULL;
break;
}
if( event )
QApplication::postEvent( im, event );
return VLC_SUCCESS;
}
static int VbiEvent( vlc_object_t *, const char *,
vlc_value_t, vlc_value_t, void *param )
{
InputManager *im = (InputManager*)param;
IMEvent *event = new IMEvent( IMEvent::ItemTeletextChanged );
QApplication::postEvent( im, event );
return VLC_SUCCESS;
}
void InputManager::UpdatePosition()
{
/* Update position */
int64_t i_length = var_GetInteger( p_input , "length" );
int64_t i_time = var_GetInteger( p_input , "time");
float f_pos = var_GetFloat( p_input , "position" );
emit positionUpdated( f_pos, i_time, i_length / CLOCK_FREQ );
}
void InputManager::UpdateNavigation()
{
/* Update navigation status */
vlc_value_t val; val.i_int = 0;
vlc_value_t val2; val2.i_int = 0;
if( hasInput() )
var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
if( val.i_int > 0 )
{
/* p_input != NULL since val.i_int != 0 */
var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val2, NULL );
emit titleChanged( val.i_int > 1 );
emit chapterChanged( val2.i_int > 1 );
}
else
emit chapterChanged( false );
if( hasInput() )
emit inputCanSeek( var_GetBool( p_input, "can-seek" ) );
else
emit inputCanSeek( false );
}
void InputManager::UpdateStatus()
{
/* Update playing status */
int state = var_GetInteger( p_input, "state" );
if( i_old_playing_status != state )
{
i_old_playing_status = state;
emit playingStatusChanged( state );
}
}
void InputManager::UpdateRate()
{
/* Update Rate */
float f_new_rate = var_GetFloat( p_input, "rate" );
if( f_new_rate != f_rate )
{
f_rate = f_new_rate;
/* Update rate */
emit rateChanged( f_rate );
}
}
void InputManager::UpdateName()
{
assert( p_input );
/* Update text, name and nowplaying */
QString name;
/* Try to get the nowplaying */
char *format = var_InheritString( p_intf, "input-title-format" );
char *formatted = NULL;
if (format != NULL)
{
formatted = str_format_meta( p_input, format );
free( format );
if( formatted != NULL )
{
name = qfu(formatted);
free( formatted );
}
}
/* If we have Nothing */
if( name.simplified().isEmpty() )
{
char *uri = input_item_GetURI( input_GetItem( p_input ) );
char *file = uri ? strrchr( uri, '/' ) : NULL;
if( file != NULL )
{
decode_URI( ++file );
name = qfu(file);
}
else
name = qfu(uri);
free( uri );
}
name = name.trimmed();
if( oldName != name )
{
emit nameChanged( name );
oldName = name;
}
}
int InputManager::playingStatus()
{
return i_old_playing_status;
}
bool InputManager::hasAudio()
{
if( hasInput() )
{
vlc_value_t val;
var_Change( p_input, "audio-es", VLC_VAR_CHOICESCOUNT, &val, NULL );
return val.i_int > 0;
}
return false;
}
bool InputManager::hasVisualisation()
{
if( !p_input )
return false;
audio_output_t *aout = input_GetAout( p_input );
if( !aout )
return false;
char *visual = var_InheritString( aout, "visual" );
vlc_object_release( aout );
if( !visual )
return false;
free( visual );
return true;
}
void InputManager::UpdateTeletext()
{
if( hasInput() )
{
const bool b_enabled = var_CountChoices( p_input, "teletext-es" ) > 0;
const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
/* Teletext is possible. Show the buttons */
emit teletextPossible( b_enabled );
/* If Teletext is selected */
if( b_enabled && i_teletext_es >= 0 )
{
/* Then, find the current page */
int i_page = 100;
bool b_transparent = false;
if( p_input_vbi )
{
var_DelCallback( p_input_vbi, "vbi-page", VbiEvent, this );
vlc_object_release( p_input_vbi );
}
if( input_GetEsObjects( p_input, i_teletext_es, &p_input_vbi, NULL, NULL ) )
p_input_vbi = NULL;
if( p_input_vbi )
{
/* This callback is not remove explicitly, but interfaces
* are guaranted to outlive input */
var_AddCallback( p_input_vbi, "vbi-page", VbiEvent, this );
i_page = var_GetInteger( p_input_vbi, "vbi-page" );
b_transparent = !var_GetBool( p_input_vbi, "vbi-opaque" );
}
emit newTelexPageSet( i_page );
emit teletextTransparencyActivated( b_transparent );
}
emit teletextActivated( b_enabled && i_teletext_es >= 0 );
}
else
{
emit teletextActivated( false );
emit teletextPossible( false );
}
}
void InputManager::UpdateEPG()
{
if( hasInput() )
{
emit epgChanged();
}
}
void InputManager::UpdateVout()
{
if( hasInput() )
{
/* Get current vout lists from input */
size_t i_vout;
vout_thread_t **pp_vout;
if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
{
i_vout = 0;
pp_vout = NULL;
}
/* */
emit voutListChanged( pp_vout, i_vout );
/* */
bool b_old_video = b_video;
b_video = i_vout > 0;
if( !!b_old_video != !!b_video )
emit voutChanged( b_video );
/* Release the vout list */
for( size_t i = 0; i < i_vout; i++ )
vlc_object_release( (vlc_object_t*)pp_vout[i] );
free( pp_vout );
}
}
void InputManager::UpdateAout()
{
if( hasInput() )
{
/* TODO */
}
}
void InputManager::UpdateCaching()
{
if(!hasInput()) return;
float f_newCache = var_GetFloat ( p_input, "cache" );
if( f_newCache != f_cache )
{
f_cache = f_newCache;
/* Update cache */
emit cachingChanged( f_cache );
}
}
void InputManager::requestArtUpdate( input_item_t *p_item, bool b_forced )
{
bool b_current_item = false;
if ( !p_item && hasInput() )
{ /* default to current item */
p_item = input_GetItem( p_input );
b_current_item = true;
}
if ( p_item )
{
/* check if it has already been enqueued */
if ( p_item->p_meta && !b_forced )
{
int status = vlc_meta_GetStatus( p_item->p_meta );
if ( status & ( ITEM_ART_NOTFOUND|ITEM_ART_FETCHED ) )
return;
}
libvlc_ArtRequest( p_intf->p_libvlc, p_item,
(b_forced) ? META_REQUEST_OPTION_SCOPE_ANY
: META_REQUEST_OPTION_NONE );
/* No input will signal the cover art to update,
* let's do it ourself */
if ( b_current_item )
UpdateArt();
else
emit artChanged( p_item );
}
}
const QString InputManager::decodeArtURL( input_item_t *p_item )
{
assert( p_item );
char *psz_art = input_item_GetArtURL( p_item );
if( psz_art )
{
char *psz = make_path( psz_art );
free( psz_art );
psz_art = psz;
}
#if 0
/* Taglib seems to define a attachment://, It won't work yet */
url = url.replace( "attachment://", "" );
#endif
QString path = qfu( psz_art ? psz_art : "" );
free( psz_art );
return path;
}
void InputManager::UpdateArt()
{
QString url;
if( hasInput() )
url = decodeArtURL( input_GetItem( p_input ) );
/* the art hasn't changed, no need to update */
if(artUrl == url)
return;
/* Update Art meta */
artUrl = url;
emit artChanged( artUrl );
}
void InputManager::setArt( input_item_t *p_item, QString fileUrl )
{
if( hasInput() )
{
char *psz_cachedir = config_GetUserDir( VLC_CACHE_DIR );
QString old_url = THEMIM->getIM()->decodeArtURL( p_item );
old_url = QDir( old_url ).canonicalPath();
if( old_url.startsWith( QString::fromUtf8( psz_cachedir ) ) )
QFile( old_url ).remove(); /* Purge cached artwork */
free( psz_cachedir );
input_item_SetArtURL( p_item , fileUrl.toUtf8().constData() );
UpdateArt();
}
}
inline void InputManager::UpdateStats()
{
assert( p_input );
emit statisticsUpdated( input_GetItem( p_input ) );
}
inline void InputManager::UpdateMeta( input_item_t *p_item_ )
{
emit metaChanged( p_item_ );
emit artChanged( p_item_ );
}
inline void InputManager::UpdateMeta()
{
assert( p_input );
emit currentMetaChanged( input_GetItem( p_input ) );
}
inline void InputManager::UpdateInfo()
{
assert( p_input );
emit infoChanged( input_GetItem( p_input ) );
}
void InputManager::UpdateRecord()
{
if( hasInput() )
{
emit recordingStateChanged( var_GetBool( p_input, "record" ) );
}
}
void InputManager::UpdateProgramEvent()
{
if( hasInput() )
{
bool b_scrambled = var_GetBool( p_input, "program-scrambled" );
emit encryptionChanged( b_scrambled );
}
}
/* User update of the slider */
void InputManager::sliderUpdate( float new_pos )
{
if( hasInput() )
var_SetFloat( p_input, "position", new_pos );
emit seekRequested( new_pos );
}
void InputManager::sectionPrev()
{
if( hasInput() )
{
int i_type = var_Type( p_input, "next-chapter" );
var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
"prev-chapter":"prev-title" );
}
}
void InputManager::sectionNext()
{
if( hasInput() )
{
int i_type = var_Type( p_input, "next-chapter" );
var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
"next-chapter":"next-title" );
}
}
void InputManager::sectionMenu()
{
if( hasInput() )
{
vlc_value_t val, text;
if( var_Change( p_input, "title 0", VLC_VAR_GETCHOICES, &val, &text ) < 0 )
return;
/* XXX is it "Root" or "Title" we want here ?" (set 0 by default) */
int root = 0;
for( int i = 0; i < val.p_list->i_count; i++ )
{
if( !strcmp( text.p_list->p_values[i].psz_string, "Title" ) )
root = i;
}
var_FreeList( &val, &text );
var_SetInteger( p_input, "title 0", root );
}
}
/*
* Teletext Functions
*/
/* Set a new Teletext Page */
void InputManager::telexSetPage( int page )
{
if( hasInput() && p_input_vbi )
{
const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
if( i_teletext_es >= 0 )
{
var_SetInteger( p_input_vbi, "vbi-page", page );
emit newTelexPageSet( page );
}
}
}
/* Set the transparency on teletext */
void InputManager::telexSetTransparency( bool b_transparentTelextext )
{
if( hasInput() && p_input_vbi )
{
var_SetBool( p_input_vbi, "vbi-opaque", !b_transparentTelextext );
emit teletextTransparencyActivated( b_transparentTelextext );
}
}
void InputManager::activateTeletext( bool b_enable )
{
vlc_value_t list;
vlc_value_t text;
if( hasInput() && !var_Change( p_input, "teletext-es", VLC_VAR_GETCHOICES, &list, &text ) )
{
if( list.p_list->i_count > 0 )
{
/* Prefer the page 100 if it is present */
int i;
for( i = 0; i < text.p_list->i_count; i++ )
{
/* The description is the page number as a string */
const char *psz_page = text.p_list->p_values[i].psz_string;
if( psz_page && !strcmp( psz_page, "100" ) )
break;
}
if( i >= list.p_list->i_count )
i = 0;
var_SetInteger( p_input, "spu-es", b_enable ? list.p_list->p_values[i].i_int : -1 );
}
var_FreeList( &list, &text );
}
}
void InputManager::reverse()
{
if( hasInput() )
{
float f_rate_ = var_GetFloat( p_input, "rate" );
var_SetFloat( p_input, "rate", -f_rate_ );
}
}
void InputManager::slower()
{
var_TriggerCallback( THEPL, "rate-slower" );
}
void InputManager::faster()
{
var_TriggerCallback( THEPL, "rate-faster" );
}
void InputManager::littlefaster()
{
var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_FASTER_FINE );
}
void InputManager::littleslower()
{
var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_SLOWER_FINE );
}
void InputManager::normalRate()
{
var_SetFloat( THEPL, "rate", 1. );
}
void InputManager::setRate( int new_rate )
{
var_SetFloat( THEPL, "rate",
(float)INPUT_RATE_DEFAULT / (float)new_rate );
}
void InputManager::jumpFwd()
{
int i_interval = var_InheritInteger( p_input, "short-jump-size" );
if( i_interval > 0 && hasInput() )
{
mtime_t val = CLOCK_FREQ * i_interval;
var_SetInteger( p_input, "time-offset", val );
}
}
void InputManager::jumpBwd()
{
int i_interval = var_InheritInteger( p_input, "short-jump-size" );
if( i_interval > 0 && hasInput() )
{
mtime_t val = -CLOCK_FREQ * i_interval;
var_SetInteger( p_input, "time-offset", val );
}
}
void InputManager::setAtoB()
{
if( !timeA )
{
timeA = var_GetInteger( THEMIM->getInput(), "time" );
}
else if( !timeB )
{
timeB = var_GetInteger( THEMIM->getInput(), "time" );
var_SetInteger( THEMIM->getInput(), "time" , timeA );
CONNECT( this, positionUpdated( float, int64_t, int ),
this, AtoBLoop( float, int64_t, int ) );
}
else
{
timeA = 0;
timeB = 0;
disconnect( this, SIGNAL( positionUpdated( float, int64_t, int ) ),
this, SLOT( AtoBLoop( float, int64_t, int ) ) );
}
emit AtoBchanged( (timeA != 0 ), (timeB != 0 ) );
}
/* Function called regularly when in an AtoB loop */
void InputManager::AtoBLoop( float, int64_t i_time, int )
{