summaryrefslogtreecommitdiffstats
path: root/media/base/test_data_util.h
blob: a132875bf8d7edc41bf77e546bfc31d01491acbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) 2012 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.

#ifndef MEDIA_BASE_TEST_DATA_UTIL_H_
#define MEDIA_BASE_TEST_DATA_UTIL_H_

#include <string>

#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"

namespace media {

class Buffer;
class DataBuffer;

// Returns a URL path for a file in the media/test/data directory.
std::string GetTestDataURL(const std::string& name);

// Reads a test file from media/test/data directory and stores it in
// a scoped_array.
//
//  |name| - The name of the file.
//  |buffer| - The contents of the file.
//  |size| - The size of the buffer.
void ReadTestDataFile(const std::string& name,
                      scoped_array<uint8>* buffer,
                      int* size);

// Reads a test file from media/test/data directory and stores it in
// a DataBuffer.
//
//  |name| - The name of the file.
//  |buffer| - The contents of the file.
void ReadTestDataFile(const std::string& name,
                      scoped_refptr<DataBuffer>* buffer);

// Reads a test file from media/test/data directory and stores it in
// a Buffer.
//
//  |name| - The name of the file.
//  |buffer| - The contents of the file.
void ReadTestDataFile(const std::string& name, scoped_refptr<Buffer>* buffer);

}  // namespace media

#endif  // MEDIA_BASE_TEST_DATA_UTIL_H_