qt: add missing initializers (CID 1325722)
[metze/wireshark/wip.git] / ui / qt / rtp_audio_stream.cpp
index 5f9c4c8c0ed24d345f828e905f023661a04734fd..68be1ccd4ddd1eec9ecbfda646c80be0b7672c1e 100644 (file)
@@ -45,6 +45,7 @@ static const spx_int16_t visual_sample_rate_ = 1000;
 
 RtpAudioStream::RtpAudioStream(QObject *parent, _rtp_stream_info *rtp_stream) :
     QObject(parent),
+    last_sequence_(0),
     decoders_hash_(rtp_decoder_hash_table_new()),
     global_start_rel_time_(0.0),
     start_abs_offset_(0.0),
@@ -53,7 +54,8 @@ RtpAudioStream::RtpAudioStream(QObject *parent, _rtp_stream_info *rtp_stream) :
     audio_out_rate_(0),
     audio_resampler_(0),
     audio_output_(0),
-    max_sample_val_(1)
+    max_sample_val_(1),
+    color_(0)
 {
     copy_address(&src_addr_, &rtp_stream->src_addr);
     src_port_ = rtp_stream->src_port;