summaryrefslogtreecommitdiff
path: root/media/cast/test/video_utility.h
blob: 547b72d0c192296d11fb8509b86193c8decc6601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2013 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.

// Utility functions for video testing.

#include "media/cast/cast_config.h"

namespace media {
namespace cast {

// Compute and return PSNR between two frames.
double I420PSNR(const I420VideoFrame& frame1, const I420VideoFrame& frame2);

// Populate a video frame with values starting with the given start value.
// Width, height and stride should be set in advance.
// Memory is allocated within the function.
void PopulateVideoFrame(I420VideoFrame* frame, int start_value);

}  // namespace cast
}  // namespace media