| Index: webrtc/modules/video_coding/main/test/video_rtp_play.cc
|
| diff --git a/webrtc/modules/video_coding/main/test/video_rtp_play.cc b/webrtc/modules/video_coding/main/test/video_rtp_play.cc
|
| index c1bc02fbedd54378edf7ac4730b42a7165f0cdd8..256f5083271f9f8fd2a5eda7987e8857e3a575de 100644
|
| --- a/webrtc/modules/video_coding/main/test/video_rtp_play.cc
|
| +++ b/webrtc/modules/video_coding/main/test/video_rtp_play.cc
|
| @@ -44,9 +44,8 @@ int RtpPlay(const CmdArgs& args) {
|
| kDefaultVp8PayloadType, "VP8", webrtc::kVideoCodecVP8));
|
|
|
| std::string output_file = args.outputFile;
|
| - if (output_file == "") {
|
| + if (output_file.empty())
|
| output_file = webrtc::test::OutputPath() + "RtpPlay_decoded.yuv";
|
| - }
|
|
|
| webrtc::SimulatedClock clock(0);
|
| webrtc::rtpplayer::VcmPayloadSinkFactory factory(output_file, &clock,
|
|
|