diff options
author | Glenn Kasten <gkasten@google.com> | 2014-01-31 09:48:42 -0800 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2014-02-03 17:07:22 -0800 |
commit | cc1e0e807ee9a9f163a4685cbd6efd6ae55849cf (patch) | |
tree | 5defc52d8f1743923308ba7d970e1392c7866607 /include/media | |
parent | 51d53cd993043d9286e12cba884e6ee4d10b5fac (diff) | |
download | frameworks_av-cc1e0e807ee9a9f163a4685cbd6efd6ae55849cf.zip frameworks_av-cc1e0e807ee9a9f163a4685cbd6efd6ae55849cf.tar.gz frameworks_av-cc1e0e807ee9a9f163a4685cbd6efd6ae55849cf.tar.bz2 |
Add Format_isValid() and Format_isEqual() to NBAIO
This is in preparation for changing the typedef to a struct.
Change-Id: I8eb1c7d98fd12f997641e462359864fdb834abe6
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/nbaio/NBAIO.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/media/nbaio/NBAIO.h b/include/media/nbaio/NBAIO.h index 9c9721a..468508c 100644 --- a/include/media/nbaio/NBAIO.h +++ b/include/media/nbaio/NBAIO.h @@ -76,6 +76,12 @@ typedef ssize_t (*writeVia_t)(void *user, void *buffer, size_t count); typedef ssize_t (*readVia_t)(void *user, const void *buffer, size_t count, int64_t readPTS); +// Check whether an NBAIO_Format is valid +bool Format_isValid(const NBAIO_Format& format); + +// Compare two NBAIO_Format values +bool Format_isEqual(const NBAIO_Format& format1, const NBAIO_Format& format2); + // Abstract class (interface) representing a data port. class NBAIO_Port : public RefBase { |