Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 22 | namespace android { |
| 23 | |
| 24 | const char kPolicySupportsMultipleSecureCodecs[] = "supports-multiple-secure-codecs"; |
| 25 | const char kPolicySupportsSecureWithNonSecureCodec[] = "supports-secure-with-non-secure-codec"; |
| 26 | |
Ronghua Wu | 9ba21b9 | 2015-04-21 14:23:06 -0700 | [diff] [blame] | 27 | MediaResourcePolicy::MediaResourcePolicy() {} |
Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 28 | |
Ronghua Wu | 9ba21b9 | 2015-04-21 14:23:06 -0700 | [diff] [blame] | 29 | MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value) |
Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 30 | : mType(type), |
| 31 | mValue(value) {} |
| 32 | |
| 33 | void MediaResourcePolicy::readFromParcel(const Parcel &parcel) { |
| 34 | mType = parcel.readString8(); |
Ronghua Wu | 9ba21b9 | 2015-04-21 14:23:06 -0700 | [diff] [blame] | 35 | mValue = parcel.readString8(); |
Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | void MediaResourcePolicy::writeToParcel(Parcel *parcel) const { |
| 39 | parcel->writeString8(mType); |
Ronghua Wu | 9ba21b9 | 2015-04-21 14:23:06 -0700 | [diff] [blame] | 40 | parcel->writeString8(mValue); |
Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | String8 MediaResourcePolicy::toString() const { |
| 44 | String8 str; |
Ronghua Wu | 9ba21b9 | 2015-04-21 14:23:06 -0700 | [diff] [blame] | 45 | str.appendFormat("%s:%s", mType.string(), mValue.string()); |
Ronghua Wu | 231c3d1 | 2015-03-11 15:10:32 -0700 | [diff] [blame] | 46 | return str; |
| 47 | } |
| 48 | |
| 49 | }; // namespace android |