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 MediaResourcePolicy()27MediaResourcePolicy::MediaResourcePolicy() {} 28 MediaResourcePolicy(String8 type,String8 value)29MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value) 30 : mType(type), 31 mValue(value) {} 32 readFromParcel(const Parcel & parcel)33void MediaResourcePolicy::readFromParcel(const Parcel &parcel) { 34 mType = parcel.readString8(); 35 mValue = parcel.readString8(); 36 } 37 writeToParcel(Parcel * parcel) const38void MediaResourcePolicy::writeToParcel(Parcel *parcel) const { 39 parcel->writeString8(mType); 40 parcel->writeString8(mValue); 41 } 42 toString() const43String8 MediaResourcePolicy::toString() const { 44 String8 str; 45 str.appendFormat("%s:%s", mType.string(), mValue.string()); 46 return str; 47 } 48 49 }; // namespace android 50