blob: 5210825fcb6e8d3d1efd5ba1665b6aa43e7c4643 [file] [log] [blame]
Ronghua Wu231c3d12015-03-11 15:10:32 -07001/*
2 * Copyright 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "MediaResourcePolicy"
19#include <utils/Log.h>
20#include <media/MediaResourcePolicy.h>
21
22namespace android {
23
24const char kPolicySupportsMultipleSecureCodecs[] = "supports-multiple-secure-codecs";
25const char kPolicySupportsSecureWithNonSecureCodec[] = "supports-secure-with-non-secure-codec";
26
Ronghua Wu9ba21b92015-04-21 14:23:06 -070027MediaResourcePolicy::MediaResourcePolicy() {}
Ronghua Wu231c3d12015-03-11 15:10:32 -070028
Ronghua Wu9ba21b92015-04-21 14:23:06 -070029MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value)
Ronghua Wu231c3d12015-03-11 15:10:32 -070030 : mType(type),
31 mValue(value) {}
32
33void MediaResourcePolicy::readFromParcel(const Parcel &parcel) {
34 mType = parcel.readString8();
Ronghua Wu9ba21b92015-04-21 14:23:06 -070035 mValue = parcel.readString8();
Ronghua Wu231c3d12015-03-11 15:10:32 -070036}
37
38void MediaResourcePolicy::writeToParcel(Parcel *parcel) const {
39 parcel->writeString8(mType);
Ronghua Wu9ba21b92015-04-21 14:23:06 -070040 parcel->writeString8(mValue);
Ronghua Wu231c3d12015-03-11 15:10:32 -070041}
42
43String8 MediaResourcePolicy::toString() const {
44 String8 str;
Ronghua Wu9ba21b92015-04-21 14:23:06 -070045 str.appendFormat("%s:%s", mType.string(), mValue.string());
Ronghua Wu231c3d12015-03-11 15:10:32 -070046 return str;
47}
48
49}; // namespace android