diff options
Diffstat (limited to 'chrome/renderer/gpu_video_decoder_host_unittest.cc')
-rw-r--r-- | chrome/renderer/gpu_video_decoder_host_unittest.cc | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/chrome/renderer/gpu_video_decoder_host_unittest.cc b/chrome/renderer/gpu_video_decoder_host_unittest.cc index 7d23f1d..6186e48 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) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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,6 +23,8 @@ 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) { @@ -128,10 +130,14 @@ class GpuVideoDecoderHostTest : public testing::Test, .WillOnce(SendMessage(decoder_host_.get(), msg2)); EXPECT_CALL(*this, OnInitializeComplete(_)); - media::VideoCodecConfig config; - config.codec = media::kCodecH264; - config.width = kWidth; - config.height = kHeight; + media::VideoCodecConfig config( + media::kCodecH264, + kWidth, + kHeight, + kFrameRateNumerator, + kFrameRateDenominator, + NULL, + 0); decoder_host_->Initialize(&message_loop_, this, &context_, config); message_loop_.RunAllPending(); } |