summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2015-10-12 18:55:04 +0200
committerMichael Mann <mmann78@netscape.net>2015-10-13 02:55:20 +0000
commitf6d61ebfe8bd4c384366512bb05f33279a6f03d9 (patch)
tree05bdf73410eae8f0bdaeb6ad4f75ac6e1a9dd8dd
parent7c3800228881f45049b29f491b9d7648c0a5ae5d (diff)
downloadwireshark-f6d61ebfe8bd4c384366512bb05f33279a6f03d9.tar.gz
qt: add missing initializers (CID 1325722)
Change-Id: Ie1ed72fe2efe31db1ce5b73ac6e659ba305f4001 Reviewed-on: https://code.wireshark.org/review/10961 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--ui/qt/rtp_audio_stream.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/qt/rtp_audio_stream.cpp b/ui/qt/rtp_audio_stream.cpp
index 5f9c4c8c0e..68be1ccd4d 100644
--- a/ui/qt/rtp_audio_stream.cpp
+++ b/ui/qt/rtp_audio_stream.cpp
@@ -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;