| Index: webrtc/voice_engine/file_player.cc
|
| diff --git a/webrtc/voice_engine/file_player.cc b/webrtc/voice_engine/file_player.cc
|
| index b581d5235b78dc892018cece8c127b0aaabb7a17..1e0b344b36438fa798338b3c9e2c374059a9fe9c 100644
|
| --- a/webrtc/voice_engine/file_player.cc
|
| +++ b/webrtc/voice_engine/file_player.cc
|
| @@ -253,7 +253,7 @@ int32_t FilePlayerImpl::StartPlayingFile(const char* fileName,
|
| return -1;
|
| }
|
| } else {
|
| - CodecInst* no_inst = NULL;
|
| + CodecInst* no_inst = nullptr;
|
| if (_fileModule.StartPlayingAudioFile(fileName, notification, loop,
|
| _fileFormat, no_inst, startPosition,
|
| stopPosition) == -1) {
|
| @@ -319,7 +319,7 @@ int32_t FilePlayerImpl::StartPlayingFile(InStream* sourceStream,
|
| return -1;
|
| }
|
| } else {
|
| - CodecInst* no_inst = NULL;
|
| + CodecInst* no_inst = nullptr;
|
| if (_fileModule.StartPlayingAudioStream(*sourceStream, notification,
|
| _fileFormat, no_inst, startPosition,
|
| stopPosition) == -1) {
|
|
|