mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-20 06:58:01 +02:00
2023-05-30 Fred Gleason <fredg@paravelsystems.com>
* Fixed uninitiated variables in rdairplay(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
166747f9fe
commit
d8576c70c1
@ -24188,3 +24188,5 @@
|
||||
2023-05-30 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdairplay(1) that could cause random delays when
|
||||
starting audio events in logs.
|
||||
2023-05-30 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed uninitiated variables in rdairplay(1).
|
||||
|
@ -90,6 +90,9 @@ RDLogPlay::RDLogPlay(int id,RDEventPlayer *player,bool enable_cue,QObject *paren
|
||||
play_card[i]=0;
|
||||
play_port[i]=0;
|
||||
}
|
||||
for(int i=0;i<RD_MAX_CARDS;i++) {
|
||||
play_timescaling_supported[i]=false;
|
||||
}
|
||||
|
||||
//
|
||||
// Play Decks
|
||||
@ -132,6 +135,7 @@ RDLogPlay::RDLogPlay(int id,RDEventPlayer *player,bool enable_cue,QObject *paren
|
||||
// Audition Player
|
||||
//
|
||||
play_audition_line=-1;
|
||||
play_audition_head_played=false;
|
||||
if(enable_cue&&(rda->station()->cueCard()>=0)&&
|
||||
(rda->station()->cuePort()>=0)) {
|
||||
play_audition_player=
|
||||
|
Loading…
x
Reference in New Issue
Block a user