| Index: webrtc/modules/audio_coding/neteq/merge.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/merge.h b/webrtc/modules/audio_coding/neteq/merge.h
|
| index 95dea5a885ad6ab7df148085a21401dbdc154d9b..48f09a16727d2066ece410007212a2dd5d4f8b98 100644
|
| --- a/webrtc/modules/audio_coding/neteq/merge.h
|
| +++ b/webrtc/modules/audio_coding/neteq/merge.h
|
| @@ -37,7 +37,7 @@ class Merge {
|
| size_t num_channels,
|
| Expand* expand,
|
| SyncBuffer* sync_buffer);
|
| - virtual ~Merge() {}
|
| + virtual ~Merge();
|
|
|
| // The main method to produce the audio data. The decoded data is supplied in
|
| // |input|, having |input_length| samples in total for all channels
|
| @@ -93,6 +93,7 @@ class Merge {
|
| int16_t expanded_downsampled_[kExpandDownsampLength];
|
| int16_t input_downsampled_[kInputDownsampLength];
|
| AudioMultiVector expanded_;
|
| + std::vector<int16_t> temp_data_;
|
|
|
| RTC_DISALLOW_COPY_AND_ASSIGN(Merge);
|
| };
|
|
|