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

Unified Diff: webrtc/video/replay.cc

Issue 3003823003: Fix FrameConfigs used for VP8 with four temporal layers. (Closed)
Patch Set: Fixed int to uint cast in test Created 3 years, 3 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
« no previous file with comments | « webrtc/video/full_stack_tests.cc ('k') | webrtc/video/video_quality_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/replay.cc
diff --git a/webrtc/video/replay.cc b/webrtc/video/replay.cc
index e23ff2920fae4c3e49e44a6a99dd8a367cdcc36c..b2205e4fd7e94e8687b8109c5f088e786100342a 100644
--- a/webrtc/video/replay.cc
+++ b/webrtc/video/replay.cc
@@ -205,8 +205,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());
« no previous file with comments | « webrtc/video/full_stack_tests.cc ('k') | webrtc/video/video_quality_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698