Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Unified Diff: webrtc/video/replay.cc

Issue 3003823003: Fix FrameConfigs used for VP8 with four temporal layers. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/video/replay.cc
diff --git a/webrtc/video/replay.cc b/webrtc/video/replay.cc
index 736db449cc054fba943e6ae12af22e8dae253700..dcd552387b8e8852df3549e6f7720c0bacb2e040 100644
--- a/webrtc/video/replay.cc
+++ b/webrtc/video/replay.cc
@@ -225,8 +225,10 @@ class DecoderBitstreamFileWriter : public EncodedFrameObserver {
};
void RtpReplay() {
+ std::stringstream window_title;
+ window_title << "Playback Video (" << flags::InputFile() << ")";
std::unique_ptr<test::VideoRenderer> playback_video(
- test::VideoRenderer::Create("Playback Video", 640, 480));
+ test::VideoRenderer::Create(window_title.str().c_str(), 640, 480));
FileRenderPassthrough file_passthrough(flags::OutBase(),
playback_video.get());

Powered by Google App Engine
This is Rietveld 408576698