1 /* 2 * Copyright (C) 2019 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 package android.media.soundtrigger_middleware; 17 18 import android.media.soundtrigger_middleware.SoundModelType; 19 20 /** 21 * Base sound model descriptor. This struct can be extended for various specific types by way of 22 * aggregation. 23 * {@hide} 24 */ 25 parcelable SoundModel { 26 /** Model type. */ 27 SoundModelType type; 28 /** Unique sound model ID. */ 29 String uuid; 30 /** 31 * Unique vendor ID. Identifies the engine the sound model 32 * was build for */ 33 String vendorUuid; 34 /** Opaque data transparent to Android framework */ 35 FileDescriptor data; 36 /** Size of the above data, in bytes. */ 37 int dataSize; 38 } 39