1 /*
2  * Copyright 2016 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 #pragma once
18 
19 #ifndef __ANDROID_VNDK__
20 
21 #include <binder/IInterface.h>
22 
23 namespace android {
24 
25 // ----------------------------------------------------------------------
26 
27 class IMediaResourceMonitor : public IInterface {
28 public:
29     DECLARE_META_INTERFACE(MediaResourceMonitor)
30 
31     // Values should be in sync with Intent.EXTRA_MEDIA_RESOURCE_TYPE_XXX.
32     enum {
33         TYPE_VIDEO_CODEC = 0,
34         TYPE_AUDIO_CODEC = 1,
35         TYPE_IMAGE_CODEC = 2,
36     };
37 
38     virtual void notifyResourceGranted(/*in*/ int32_t pid, /*in*/ const int32_t type) = 0;
39 
40     enum {
41         NOTIFY_RESOURCE_GRANTED = IBinder::FIRST_CALL_TRANSACTION,
42     };
43 };
44 
45 // ----------------------------------------------------------------------
46 
47 class BnMediaResourceMonitor : public BnInterface<IMediaResourceMonitor> {
48 public:
49     // NOLINTNEXTLINE(google-default-arguments)
50     virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
51             uint32_t flags = 0);
52 };
53 
54 // ----------------------------------------------------------------------
55 
56 } // namespace android
57 
58 #else // __ANDROID_VNDK__
59 #error "This header is not visible to vendors"
60 #endif // __ANDROID_VNDK__
61