Some readability fixes for mux library

Add a #define for UNDEFINED_CHUNK_SIZE and remove a misleading comment.

Change-Id: I5c56a12f1245e647f913c35c6a34d2e5d658415e
This commit is contained in:
Urvang Joshi
2012-01-05 17:51:27 +05:30
parent d8a47e66f7
commit 7c4c177c39
2 changed files with 10 additions and 8 deletions

View File

@ -99,7 +99,7 @@ typedef struct {
const char* chunkName;
uint32_t chunkTag;
TAG_ID chunkId;
uint32_t chunkSize; // Negative value denotes that size is NOT fixed.
uint32_t chunkSize;
} ChunkInfo;
const ChunkInfo kChunks[LIST_ID + 1];