summaryrefslogtreecommitdiffstats
path: root/include/media/IMediaLogService.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-01-18 15:31:41 -0800
committerGlenn Kasten <gkasten@google.com>2013-01-25 15:12:14 -0800
commit6f1c1918d0dfece10f728711b055441e4d135c73 (patch)
treee82c0166e895f9c61c11ff0800d2871298e63b30 /include/media/IMediaLogService.h
parent11d8dfcc063425ae7d59229f54b6752fd8987c10 (diff)
downloadframeworks_av-6f1c1918d0dfece10f728711b055441e4d135c73.zip
frameworks_av-6f1c1918d0dfece10f728711b055441e4d135c73.tar.gz
frameworks_av-6f1c1918d0dfece10f728711b055441e4d135c73.tar.bz2
Add media.log service based on NBLog
Change-Id: Ie45093df6ac9a739d05c8d408fab52a9a8a27e7f
Diffstat (limited to 'include/media/IMediaLogService.h')
-rw-r--r--include/media/IMediaLogService.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/media/IMediaLogService.h b/include/media/IMediaLogService.h
new file mode 100644
index 0000000..1f5777e
--- /dev/null
+++ b/include/media/IMediaLogService.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef ANDROID_IMEDIALOGSERVICE_H
+#define ANDROID_IMEDIALOGSERVICE_H
+
+#include <binder/IInterface.h>
+#include <binder/IMemory.h>
+#include <binder/Parcel.h>
+
+namespace android {
+
+class IMediaLogService: public IInterface
+{
+public:
+ DECLARE_META_INTERFACE(MediaLogService);
+
+ virtual void registerWriter(const sp<IMemory>& shared, size_t size, const char *name) = 0;
+ virtual void unregisterWriter(const sp<IMemory>& shared) = 0;
+
+};
+
+class BnMediaLogService: public BnInterface<IMediaLogService>
+{
+public:
+ virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
+ uint32_t flags = 0);
+};
+
+} // namespace android
+
+#endif // ANDROID_IMEDIALOGSERVICE_H