From fb1fdc9d6603aa228362e7349451f6455c9849c2 Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Wed, 10 Jul 2013 17:03:19 -0700 Subject: Add comments Change-Id: Ifbf3a46a4183c8abc0feee1c588953ab10303cc1 --- include/media/nbaio/NBLog.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include/media/nbaio') diff --git a/include/media/nbaio/NBLog.h b/include/media/nbaio/NBLog.h index 107ba66..6d59ea7 100644 --- a/include/media/nbaio/NBLog.h +++ b/include/media/nbaio/NBLog.h @@ -90,6 +90,8 @@ public: virtual ~Timeline(); #endif + // Input parameter 'size' is the desired size of the timeline in byte units. + // Returns the size rounded up to a power-of-2, plus the constant size overhead for indices. static size_t sharedSize(size_t size); #if 0 @@ -110,8 +112,12 @@ private: class Writer : public RefBase { public: Writer(); // dummy nop implementation without shared memory + + // Input parameter 'size' is the desired size of the timeline in byte units. + // The size of the shared memory must be at least Timeline::sharedSize(size). Writer(size_t size, void *shared); Writer(size_t size, const sp& iMemory); + virtual ~Writer() { } virtual void log(const char *string); @@ -165,8 +171,12 @@ private: class Reader : public RefBase { public: + + // Input parameter 'size' is the desired size of the timeline in byte units. + // The size of the shared memory must be at least Timeline::sharedSize(size). Reader(size_t size, const void *shared); Reader(size_t size, const sp& iMemory); + virtual ~Reader() { } void dump(int fd, size_t indent = 0); -- cgit v1.1