summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/gpu_video_decoder_host_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/gpu_video_decoder_host_unittest.cc')
-rw-r--r--chrome/renderer/gpu_video_decoder_host_unittest.cc16
1 files changed, 5 insertions, 11 deletions
diff --git a/chrome/renderer/gpu_video_decoder_host_unittest.cc b/chrome/renderer/gpu_video_decoder_host_unittest.cc
index 6186e48..7d23f1d 100644
--- a/chrome/renderer/gpu_video_decoder_host_unittest.cc
+++ b/chrome/renderer/gpu_video_decoder_host_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -23,8 +23,6 @@ static const int kDecoderId = 51;
static const int kVideoFrames = 3;
static const int kWidth = 320;
static const int kHeight = 240;
-static const int kFrameRateNumerator = 25;
-static const int kFrameRateDenominator = 1;
static const int kTransportBufferSize = 1024;
ACTION_P(SimulateAllocateVideoFrames, frames) {
@@ -130,14 +128,10 @@ class GpuVideoDecoderHostTest : public testing::Test,
.WillOnce(SendMessage(decoder_host_.get(), msg2));
EXPECT_CALL(*this, OnInitializeComplete(_));
- media::VideoCodecConfig config(
- media::kCodecH264,
- kWidth,
- kHeight,
- kFrameRateNumerator,
- kFrameRateDenominator,
- NULL,
- 0);
+ media::VideoCodecConfig config;
+ config.codec = media::kCodecH264;
+ config.width = kWidth;
+ config.height = kHeight;
decoder_host_->Initialize(&message_loop_, this, &context_, config);
message_loop_.RunAllPending();
}