Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: media/base/test_data_util.h

Issue 1517473002: Support HLS MPEG2 TS with SAMPLE-AES encryption. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@encryption_scheme
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/bit_reader.cc ('k') | media/base/test_data_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_BASE_TEST_DATA_UTIL_H_ 5 #ifndef MEDIA_BASE_TEST_DATA_UTIL_H_
6 #define MEDIA_BASE_TEST_DATA_UTIL_H_ 6 #define MEDIA_BASE_TEST_DATA_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 17 matching lines...) Expand all
28 std::string GetURLQueryString(const base::StringPairs& query_params); 28 std::string GetURLQueryString(const base::StringPairs& query_params);
29 29
30 // Reads a test file from media/test/data directory and stores it in 30 // Reads a test file from media/test/data directory and stores it in
31 // a DecoderBuffer. Use DecoderBuffer vs DataBuffer to ensure no matter 31 // a DecoderBuffer. Use DecoderBuffer vs DataBuffer to ensure no matter
32 // what a test does, it's safe to use FFmpeg methods. 32 // what a test does, it's safe to use FFmpeg methods.
33 // 33 //
34 // |name| - The name of the file. 34 // |name| - The name of the file.
35 // |buffer| - The contents of the file. 35 // |buffer| - The contents of the file.
36 scoped_refptr<DecoderBuffer> ReadTestDataFile(const std::string& name); 36 scoped_refptr<DecoderBuffer> ReadTestDataFile(const std::string& name);
37 37
38 // If the provided |key_id| is that of a test key, returns true and fills the
39 // |key|, otherwise returns false. If |allowRotation| is true, then other valid
40 // values are obtained by rotating the original key_id and key. Two overloads
41 // are provided, one using vectors and one using strings.
42 bool LookupTestKeyVector(const std::vector<uint8_t>& key_id,
43 bool allowRotation,
44 std::vector<uint8_t>* key);
45
46 bool LookupTestKeyString(const std::string& key_id,
47 bool allowRotation,
48 std::string* key);
49
38 } // namespace media 50 } // namespace media
39 51
40 #endif // MEDIA_BASE_TEST_DATA_UTIL_H_ 52 #endif // MEDIA_BASE_TEST_DATA_UTIL_H_
OLDNEW
« no previous file with comments | « media/base/bit_reader.cc ('k') | media/base/test_data_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698