| // 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 COBALT_MEDIA_BASE_TEST_DATA_UTIL_H_ |
| #define COBALT_MEDIA_BASE_TEST_DATA_UTIL_H_ |
| |
| #include <string> |
| #include <utility> |
| #include <vector> |
| |
| #include "base/files/file_path.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/string_split.h" |
| |
| namespace cobalt { |
| namespace media { |
| |
| class DecoderBuffer; |
| |
| // Returns a file path for a file in the media/test/data directory. |
| base::FilePath GetTestDataFilePath(const std::string& name); |
| |
| // Returns relative path for test data folder: media/test/data. |
| base::FilePath GetTestDataPath(); |
| |
| // Returns a string containing key value query params in the form of: |
| // "key_1=value_1&key_2=value2" |
| std::string GetURLQueryString(const base::StringPairs& query_params); |
| |
| // Reads a test file from media/test/data directory and stores it in |
| // a DecoderBuffer. Use DecoderBuffer vs DataBuffer to ensure no matter |
| // what a test does, it's safe to use FFmpeg methods. |
| // |
| // |name| - The name of the file. |
| // |buffer| - The contents of the file. |
| scoped_refptr<DecoderBuffer> ReadTestDataFile(const std::string& name); |
| |
| } // namespace media |
| } // namespace cobalt |
| |
| #endif // COBALT_MEDIA_BASE_TEST_DATA_UTIL_H_ |